aboutsummaryrefslogtreecommitdiff
path: root/templates/base.html
diff options
context:
space:
mode:
authorJJ <nicetry@noemail.com>2025-03-30 20:56:01 +0100
committerJJ <nicetry@noemail.com>2025-03-30 20:56:01 +0100
commitd518beb637e7c2776d84e87c63cc201c101ca89c (patch)
treeabbfc7933285f829a23afeae09655e5d2106849b /templates/base.html
parentaa931dddf30700b6458a269389291b632a848ccb (diff)
styling, sub instructions
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html
index 64ae319..3181a2f 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -5,9 +5,16 @@
<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>
+ <body hx-ext="response-targets">
{% include "/components/header.html" %}
<h1>{% block heading %}Some heading!{% endblock %}</h1>
{% block content %}{% endblock %}