headline/view/templates/base.html

32 lines
895 B
HTML
Raw Normal View History

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>
2023-08-16 21:57:31 +02:00
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet" />
2023-08-16 18:52:24 +02:00
</head>
<body>
2023-08-17 00:06:57 +02:00
{% include "parts/header.html" %}
<main class="main">
2023-08-16 19:41:55 +02:00
{% block body %}{% endblock %}
</main>
2023-08-17 00:06:57 +02:00
{% include "parts/footer.html" %}
2023-08-16 18:52:24 +02:00
</body>
</html>