summaryrefslogtreecommitdiff
path: root/templates/partials/head.html
blob: fa2c30dbefa66902de23bbb0979d6a52ec963ad8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<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>