blob: 22c72a028b49582c9f29d95912419261871d843e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Match Up!</title>
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='bulma.min.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='custom.css') }}">
<script src="{{ url_for('static', filename='htmx.min.js') }}"></script>
</head>
<body>
<section class="section">
<nav class="level">
<div class="level-left">
<div class="level-item">
<figure class="image container is-128x128">
<img src="{{ url_for('static', filename='logo.png') }}"/>
</figure>
</div>
</div>
<div class="level-item">
<p class="title">Match Up!</p>
</div>
<div class="level-right">
<div hx-get="/time" hx-swap="outerHTML" hx-trigger="revealed"></div>
</div>
</nav>
<div hx-get="/control" hx-swap="outerHTML" hx-trigger="revealed"></div>
<p class="title">Games</p>
<div hx-post="/clear" hx-swap="outerHTML" hx-trigger="revealed"></div>
</section>
<section class="section">
<h2 class="title">Players</h2>
<div hx-get="/players" hx-swap="outerHTML" hx-trigger="revealed"></div>
</section>
<footer class="footer">
<div class="content has-text-centered">
Made by <a href="https://karanjayachandra.com/">Karan</a> using <a href="https://flask.palletsprojects.com">Flask</a>, <a href="https://htmx.org/">HTMX</a> and <a href="https://bulma.io">Bulma</a>
</div>
</footer>
</body>
</html>
|