summaryrefslogtreecommitdiff
path: root/templates/index.j2
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.j2')
-rw-r--r--templates/index.j244
1 files changed, 0 insertions, 44 deletions
diff --git a/templates/index.j2 b/templates/index.j2
deleted file mode 100644
index 764eae8..0000000
--- a/templates/index.j2
+++ /dev/null
@@ -1,44 +0,0 @@
-<!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>
- <p class="level-item has-text-centered">
- <a class="title link is-info is-underlined" href="/">Games</a>
- </p>
- <div class="level-item has-text-centered">
- <p class="title is-1">Match Up!</p>
- </div>
- <p class="level-item has-text-centered">
- <a class="title link is-info" href="/players">Players</a>
- </p>
- <div class="level-right">
- <div hx-get="/time" hx-swap="outerHTML" hx-trigger="load"></div>
- </div>
- </nav>
- <div hx-post="/clear" hx-swap="outerHTML" hx-trigger="load"></div>
- <div hx-get="/control" hx-swap="outerHTML" hx-trigger="load"></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>