2023-08-16 18:52:24 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<title>Headliner</title>
|
|
|
|
<link
|
|
|
|
rel="shortcut icon"
|
|
|
|
href="{{ url_for('static', filename='favicon.ico') }}"
|
|
|
|
/>
|
|
|
|
<link
|
|
|
|
rel="stylesheet"
|
|
|
|
href="{{ url_for('static', filename='main.css') }}"
|
|
|
|
/>
|
|
|
|
<script
|
|
|
|
defer
|
|
|
|
data-domain="headline.beta.nolog.cz"
|
|
|
|
src="https://plausible.nolog.cz/js/plausible.js"
|
|
|
|
></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
2023-08-16 19:41:55 +02:00
|
|
|
<header class="header">
|
|
|
|
<div class="container">
|
|
|
|
<h1>
|
|
|
|
Headliner
|
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<main>
|
|
|
|
{% block body %}{% endblock %}
|
|
|
|
</main>
|
2023-08-16 18:52:24 +02:00
|
|
|
{% include 'parts/footer.html' %}
|
|
|
|
</body>
|
|
|
|
</html>
|