diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2024-11-09 18:19:48 +0000 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2024-11-09 18:19:48 +0000 |
| commit | 1a7ae4bc2b759de7a03e6ad83632e6ad678754c8 (patch) | |
| tree | 5b771e755f3a55c6794c649431de35798242a2e0 /src/match_up/templates/index.j2 | |
| parent | 2b18e0929a0b3e083cbe9e5e8ffd421ed8d17e52 (diff) | |
| parent | 75a3ef7d14fcaedab29da46ba3dc5cf9c1bab699 (diff) | |
Merge branch 'feature/package' into 'develop'
Implemented packaging and command line arguments
See merge request KaranJayachandra/match_up!10
Diffstat (limited to 'src/match_up/templates/index.j2')
| -rw-r--r-- | src/match_up/templates/index.j2 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/match_up/templates/index.j2 b/src/match_up/templates/index.j2 new file mode 100644 index 0000000..ce0d531 --- /dev/null +++ b/src/match_up/templates/index.j2 @@ -0,0 +1,13 @@ +{% from "macros.j2" import header, footer, navbar %} +<!doctype html> +<html lang="en"> + {{ header(url_for) }} + <body> + <section class="section"> + {{ navbar(url_for) }} + <div hx-post="/clear" hx-swap="outerHTML" hx-trigger="load"></div> + <div hx-get="/control" hx-swap="outerHTML" hx-trigger="load"></div> + {{ footer() }} + </section> + </body> +</html> |
