2024-02-04 20:21:15 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2024-02-05 15:47:21 +00:00
|
|
|
<link rel="icon" href="/img/favicon.ico" />
|
2024-02-04 20:21:15 +00:00
|
|
|
<link rel="stylesheet" href="../static/style/output.css" />
|
|
|
|
{% block head %}{% endblock %}
|
|
|
|
</head>
|
2024-02-06 03:28:23 +00:00
|
|
|
<body
|
2024-02-28 20:01:43 +00:00
|
|
|
class="content-center justify-center w-auto p-2 m-2 font-mono text-center text-white bg-neutral-800"
|
2024-02-06 03:28:23 +00:00
|
|
|
>
|
2024-02-05 13:16:44 +00:00
|
|
|
{% block body %} {% endblock %}
|
2024-02-04 20:21:15 +00:00
|
|
|
</body>
|
2024-02-26 13:08:02 +00:00
|
|
|
|
2024-02-05 15:50:20 +00:00
|
|
|
{% for file in js_files %}
|
2024-02-06 03:28:23 +00:00
|
|
|
<script src="{{ url_for('static', filename='js/' + file) }}"></script>
|
|
|
|
{% endfor %}
|
2024-02-04 20:21:15 +00:00
|
|
|
</html>
|