mirror of
https://git.nolog.cz/NoLog.cz/headline.git
synced 2025-01-31 20:03:34 +01:00
31 lines
895 B
HTML
31 lines
895 B
HTML
<!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>
|
|
<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" />
|
|
</head>
|
|
<body>
|
|
{% include "parts/header.html" %}
|
|
<main class="main">
|
|
{% block body %}{% endblock %}
|
|
</main>
|
|
{% include "parts/footer.html" %}
|
|
</body>
|
|
</html>
|