i12e/htmx/templates/home.html

42 lines
1002 B
HTML
Raw Normal View History

2022-03-21 00:08:20 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>
{{ _("The Musical Internatiionale") }}
</title>
<script src='https://unpkg.com/htmx.org@1.7.0'></script>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<main>
<blockquote id="the-quote">
I don't need a rationale<br/>
to sing the Internationale
<cite>
They might be giants
</cite>
</blockquote>
<div class="intro">{{ _("All the countries in the world — which bands or solo musicians from these countries do you know?") }}</div>
<table id="country-list">
<tbody hx-post="/entry_form" hx-trigger="load">
</tbody>
<tfoot>
<tr>
<td>
</td>
<td>
<a href="/result/{{ public_id }}" class="btn">
{{ _("Show") }}
</a>
</td>
</tr>
</tfoot>
</table>
</main>
</body>
</html>