blob: 8a13fa0b29697fe5a980eff3fb3a39de69f64b50 (
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) }}</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 defer src="{{ url_for('static', filename='custom.js') }}"></script>
</body>
</html>
|