2025-04-16 22:47:29 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2025-04-18 11:53:41 -04:00
|
|
|
<meta charset="utf-8">
|
2025-04-18 11:28:28 -04:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2025-04-18 12:16:26 -04:00
|
|
|
<title>
|
|
|
|
{% if title %}{{ title }} - {% endif %}
|
|
|
|
{% if series %}{{ series.name }} - {% endif %}
|
|
|
|
{{ metadata.title }}
|
|
|
|
</title>
|
2025-04-18 11:53:23 -04:00
|
|
|
<meta name="description" content="{{ description or metadata.description }}">
|
2025-04-18 11:58:38 -04:00
|
|
|
<link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
|
2025-04-18 11:28:28 -04:00
|
|
|
<link rel="stylesheet" href="/styles.css">
|
2025-04-16 22:47:29 -04:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ content | safe }}
|
2025-04-18 11:28:28 -04:00
|
|
|
<hr>
|
|
|
|
<footer>
|
|
|
|
{% include "site_nav.njk" %}
|
|
|
|
{% include "socials.njk" %}
|
|
|
|
</footer>
|
2025-04-16 22:47:29 -04:00
|
|
|
</body>
|
|
|
|
</html>
|