2d5ec8fc6d
Dark theme matching GOA palette, standalone microsite (no nav). - Landing/login: GOA subhead + big "Suff" wordmark, large tap targets - me page: 2-col 4:3 drink grid, bordered total box, day-grouped history with zebra rows, emoji empty-state - Booking confirmation toast (amber, 5s, then 800ms CSS collapse) - Touch feedback via :active scale, SVG beer favicon - no_pin.html link-buttons styled
19 lines
584 B
HTML
19 lines
584 B
HTML
{% load static %}
|
|
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta charset="utf-8" />
|
|
<title>Suff - Gähsnitz Open Air</title>
|
|
<link rel="icon" type="image/svg+xml" href="{% static 'suff/favicon.svg' %}" />
|
|
<link rel="stylesheet" href="{% static 'suff/style.css' %}" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<p class="site-name">Gähsnitz Open Air</p>
|
|
<h1>Suff</h1>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|