diff options
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 9 |
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 %} |