Add missing head tag

This commit is contained in:
Daniel J. Summers 2024-04-19 21:31:06 -04:00
parent 966e536278
commit 96a43a775e
2 changed files with 19 additions and 17 deletions

View File

@ -1,21 +1,23 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang=en> <html lang=en>
<meta charset=utf-8> <head>
<meta http-equiv=X-UA-Compatible content="IE=edge"> <meta charset=utf-8>
<meta name=viewport content="width=device-width, initial-scale=1"> <meta http-equiv=X-UA-Compatible content="IE=edge">
<title> <meta name=viewport content="width=device-width, initial-scale=1">
{%- if is_home -%} <title>
{{ web_log.name }}{% if web_log.subtitle %} | {{ web_log.subtitle.value }}{% endif %} {%- if is_home -%}
{%- else -%} {{ web_log.name }}{% if web_log.subtitle %} | {{ web_log.subtitle.value }}{% endif %}
{{ page_title | strip_html }}{% if page_title and page_title != "" %} &raquo; {% endif %}{{ web_log.name }} {%- else -%}
{%- endif -%} {{ page_title | strip_html }}{% if page_title and page_title != "" %} &raquo; {% endif %}{{ web_log.name }}
</title> {%- endif -%}
<link rel=preload href="https://fonts.googleapis.com/css?family=Quicksand|Oswald" as=style> </title>
<link rel=preload href=https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css as=style> <link rel=preload href="https://fonts.googleapis.com/css?family=Quicksand|Oswald" as=style>
<link rel=preload href="{{ "style.css" | theme_asset }}" as=style> <link rel=preload href=https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css as=style>
<link rel=stylesheet href=https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css> <link rel=preload href="{{ "style.css" | theme_asset }}" as=style>
<script src="{{ "djs.js" | theme_asset }}"></script> <link rel=stylesheet href=https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css>
{% page_head -%} <script src="{{ "djs.js" | theme_asset }}"></script>
{% page_head -%}
</head>
<body hx-boost=true hx-target=main hx-indicator=#loadOverlay hx-swap="innerHTML show:body:top"> <body hx-boost=true hx-target=main hx-indicator=#loadOverlay hx-swap="innerHTML show:body:top">
<nav class=site-header role=navigation> <nav class=site-header role=navigation>
<p><a class=nav-home href="{{ "" | relative_link }}">{{ web_log.name }}</a> <p><a class=nav-home href="{{ "" | relative_link }}">{{ web_log.name }}</a>

View File

@ -1,2 +1,2 @@
Daniel J. Summers Daniel J. Summers
20240120 20240419