summaryrefslogtreecommitdiff
path: root/templates/partials/head.html
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-09 10:59:13 -0400
committerGitHub <[email protected]>2024-10-09 10:59:13 -0400
commitd17bca56238e9ca326d60e58230d0d354f23bfe8 (patch)
tree12aee4c37a1490914e6307ce1b0023be2df93105 /templates/partials/head.html
parent7d6495399d5e1ba429a339de1c3a00f121e89305 (diff)
back to astro for hopefully the last time (#146)
Diffstat (limited to 'templates/partials/head.html')
-rw-r--r--templates/partials/head.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/templates/partials/head.html b/templates/partials/head.html
deleted file mode 100644
index fa2c30d..0000000
--- a/templates/partials/head.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<head>
- <meta charset="UTF-8" />
- {% if page.title %}
- {% set title = page.title %}
- {% elif section.title %}
- {% set title = section.title %}
- {% else %}
- {% set title = config.title %}
- {% endif %}
- <title>{{ title }}</title>
- <meta name="viewport" content="width=device-width,initial-scale=1" />
- {% if page.description %}
- {% set description = page.description %}
- {% elif section.description %}
- {% set description = section.description %}
- {% else %}
- {% set description = config.description %}
- {% endif %}
- <meta name="description" content="{{ description }}" />
- <link rel="sitemap" href="sitemap.xml" />
- <link rel="stylesheet" href="/style.css" />
-</head>