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

View File

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