summaryrefslogtreecommitdiff
path: root/templates/partials/head.html
diff options
context:
space:
mode:
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>