mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
18 lines
391 B
HTML
18 lines
391 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='bootstrap.css') }}">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html>
|