36 lines
793 B
HTML
36 lines
793 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>Gähsnitz Open Air</title>
|
|
<link rel="stylesheet" type="text/css" href="{% static 'gaehsnitz/style.css' %}">
|
|
</head>
|
|
<body>
|
|
|
|
<div id="title">
|
|
<h1>Gähsnitz Open Air 2024</h1>
|
|
~ Do 06. - So 09. Juni ~
|
|
</div>
|
|
|
|
<div id="navi">
|
|
<a href="{% url 'gaehsnitz:news' %}">News</a>
|
|
|
|
|
<a href="{% url 'gaehsnitz:atoz' %}">A-Z</a>
|
|
|
|
|
<a href="{% url 'gaehsnitz:program' %}">Programm</a>
|
|
|
|
|
<a href="{% url 'gaehsnitz:finance' %}">Finanzen</a>
|
|
|
|
|
<a href="{% url 'gaehsnitz:for-bands' %}">für Bands</a>
|
|
</div>
|
|
|
|
<div id="content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|