Files
eventregistration/app/templates/base.html
2026-01-09 03:54:34 +01:00

26 lines
719 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}h4tum CTF Register{% endblock %}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header class="container header-title">
<h1><a href="{{ url_for('main.index') }}">> h4tum CTF 2026</a></h1>
</header>
<main>
{% block content %}{% endblock %}
</main>
<footer>
<p>
<a href="{{ url_for('main.dsgvo') }}">Datenschutz (DSGVO)</a> |
<a href="{{ url_for('main.impressum') }}">Impressum</a>
</p>
</footer>
</body>
</html>