Include a post's title in the <title /> tag

This commit is contained in:
arne 2022-04-12 07:04:04 +02:00
commit ba4dace05b

View file

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if data.tite %}{{ data.title }} | {% endif %}{{ page.title }}</title>
<title>{% if title %}{{ title }} | {% endif %}{{ page.title }}</title>
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🌌</text></svg>">
<link rel="stylesheet" href="{{ '/assets/style.css' | url }}" />
</head>