1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>index.cooking - {% block title %}{% endblock %}</title>
<script src="/static/scripts/htmx.js" defer></script>
<script src="/static/scripts/htmx-targets.js" defer></script>
{% block scripts %} {% endblock %}
<link href="/static/style/style.css" rel="stylesheet" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet"
/>
</head>
<body hx-ext="response-targets">
{% include "/components/header.html" %}
<h1>{% block heading %}Some heading!{% endblock %}</h1>
{% block content %}{% endblock %}
</body>
</html>
|