Generate single page versions of series
This commit is contained in:
parent
111c859aee
commit
00b535a618
5 changed files with 53 additions and 5 deletions
18
_includes/layouts/series_base.njk
Normal file
18
_includes/layouts/series_base.njk
Normal file
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>
|
||||
{% if title %}{{ title }} - {% endif %}
|
||||
{% if series %}{{ series.name }} - {% 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 }}
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue