19 lines
616 B
Text
19 lines
616 B
Text
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% if title %}{{ title }} - {% endif %}{{ metadata.title }}</title>
|
|
<meta name="description" content="{{ description or metadata.description }}">
|
|
<link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
|
|
<link rel="stylesheet" href="/styles.css">
|
|
</head>
|
|
<body>
|
|
{{ content | safe }}
|
|
<hr>
|
|
<footer>
|
|
{% include "site_nav.njk" %}
|
|
{% include "socials.njk" %}
|
|
</footer>
|
|
</body>
|
|
</html>
|