cheddar
·
2025-04-18
series_base.njk
1<!DOCTYPE html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>
7 {% if title %}{{ title }} - {% endif %}
8 {% if series %}{{ series.name }} - {% endif %}
9 {{ metadata.title }}
10 </title>
11 <meta name="description" content="{{ description or metadata.description }}">
12 <link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.title }}">
13 <link rel="stylesheet" href="/styles.css">
14 </head>
15 <body>
16 {{ content | safe }}
17 </body>
18</html>