blob: af6ca4c314eafc3187682482c050cc20e14924a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{% from "macros.j2" import header, footer, navbar %}
<!doctype html>
<html lang="en">
{{ header(url_for) }}
<body>
<header class="container">{{ navbar(url_for, login_status) }}</header>
<main class="container">
<h2>Games</h2>
<div hx-post="/clear" hx-swap="outerHTML" hx-trigger="load"></div>
<h2>Controls</h2>
<div hx-get="/control" hx-swap="outerHTML" hx-trigger="load"></div>
</main>
<footer class="container">{{ footer() }}</footer>
<script src="{{ url_for('static', filename='timer.js') }}"></script>
</body>
</html>
|