39 lines
1.5 KiB
HTML
39 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
{% block 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') }}">
|
|
<link rel="icon" type="image/x-icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='favicon-16x16.png') }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='favicon-32x32.png') }}">
|
|
<link rel="icon" type="image/png" sizes="96x96" href="{{ url_for('static', filename='favicon-96x96.png') }}">
|
|
{% block meta %}
|
|
{% block meta_title %}{% endblock %}
|
|
{% block meta_description %}{% endblock %}
|
|
{% block meta_image %}{% endblock %}
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:site_name" content="h4tum Registration Portal">
|
|
{% endblock %}
|
|
{% endblock %}
|
|
</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>
|