blob: 8d05bb0aeeac00cff35f43ac3a7651a7fc69190d (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
{% macro court(id, status) -%}
<button class= "button is-responsive {% if status %}is-success{% else %}is-danger{% endif %}"
hx-post="{{ "/court-toggle/" ~ id}}"
hx-swap="outerHTML"> Court {{ id }}</button>
{%- endmacro %}
{% macro player(id, status, name) -%}
<button class="button is-responsive {% if status %}is-success{% else %}is-danger {% endif %}"
hx-post="{{ "/player-toggle/" ~ id}}"
hx-swap="outerHTML"> {{ name }} </button>
{%- endmacro %}
{% macro guests(count) -%}
<div class="control" id="guests">
<input class="input is-responsive" type="text" style="text-align:center" value="{{ count }} Guests" disabled>
</div>
{%- endmacro %}
{% macro timer(mins, secs) -%}
<div hx-get="/time" hx-swap="outerHTML" hx-trigger="every 1s">
<p class="title">⏲️ {{mins}}:{{secs}}</p>
</div>
{%- endmacro %}
{% macro header() -%}
<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>
{%- endmacro %}
{% macro 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>
{%- endmacro %}
{% macro navbar() -%}
<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 has-text-centered"></div>
<p class="level-item has-text-centered">
<button class="button is-link" onclick="location.href = '/';">Games</button>
</p>
<div class="level-item has-text-centered"></div>
<div class="level-item has-text-centered">
<p class="title">Match Up!</p>
</div>
<div class="level-item has-text-centered"></div>
<p class="level-item has-text-centered">
<button class="button is-link" onclick="location.href = '/players';">Players</button>
</p>
<div class="level-item has-text-centered"></div>
<div class="level-right">
<div hx-get="/time" hx-swap="outerHTML" hx-trigger="load"></div>
</div>
</nav>
{%- endmacro %}
|