23 lines
688 B
HTML
23 lines
688 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>TopTrumps - Dinosaurs</title>
|
|
<script src="https://unpkg.com/htmx.org@1.9.5"></script>
|
|
<style>
|
|
body{font-family:system-ui,Segoe UI,Roboto,Arial;margin:20px}
|
|
.card{border:1px solid #ddd;padding:12px;margin:8px;border-radius:6px}
|
|
.controls{margin-bottom:12px}
|
|
.grid{display:flex;flex-wrap:wrap}
|
|
.grid .card{width:220px}
|
|
form .row{margin-bottom:8px}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>TopTrumps — Dinosaurs</h1>
|
|
<div id="messages"></div>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|