2026-05-03 15:38:07 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="de">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
|
<title>Das Kaleidoskop der Schlummerwelten</title>
|
|
|
|
|
<link rel="stylesheet" href="../styles/print.css">
|
|
|
|
|
<link rel="stylesheet" href="../styles/layout.css">
|
|
|
|
|
<link rel="stylesheet" href="../styles/typography.css">
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
2026-05-03 19:18:12 +02:00
|
|
|
{# ── Page 1 (right): Copyright / imprint ── #}
|
2026-05-03 15:38:07 +02:00
|
|
|
<div class="page page--imprint">
|
|
|
|
|
<div class="imprint-content">
|
2026-05-03 18:39:42 +02:00
|
|
|
<p>{{ frontMatter.title or 'Das Kaleidoskop der Schlummerwelten' }}</p>
|
|
|
|
|
<p>{% if frontMatter.author %}{{ frontMatter.author }}{% endif %}{% if frontMatter.year %}, {{ frontMatter.year }}{% endif %}</p>
|
|
|
|
|
<p>Erste Ausgabe · Alle Rechte vorbehalten.</p>
|
2026-05-03 15:38:07 +02:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
2026-05-03 19:18:12 +02:00
|
|
|
{# ── Page 2 (left): Title page ── #}
|
|
|
|
|
<div class="page page--titlepage">
|
|
|
|
|
<div class="titlepage-inner">
|
|
|
|
|
<span class="titlepage-ornament">❧</span>
|
|
|
|
|
<h1 class="titlepage-title">{{ frontMatter.title or 'Das Kaleidoskop der Schlummerwelten' }}</h1>
|
|
|
|
|
<p class="titlepage-subtitle">{{ frontMatter.subtitle or '' }}</p>
|
|
|
|
|
<p class="titlepage-author">{{ frontMatter.author or '' }}</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{# ── Page 3 (right): Table of contents ── #}
|
2026-05-03 15:38:07 +02:00
|
|
|
<div class="page page--toc">
|
2026-05-03 18:51:51 +02:00
|
|
|
<h2 class="toc-title">Die zwölf Schlummerwelten</h2>
|
2026-05-03 15:38:07 +02:00
|
|
|
<ol class="toc-list">
|
|
|
|
|
{% for story in stories %}
|
2026-05-03 18:39:42 +02:00
|
|
|
<li>{{ story.title }}</li>
|
2026-05-03 15:38:07 +02:00
|
|
|
{% endfor %}
|
|
|
|
|
</ol>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{# ── Stories ── #}
|
|
|
|
|
{% for story in stories %}
|
2026-05-03 18:39:42 +02:00
|
|
|
{% include "story-spread.html" %}
|
2026-05-03 15:38:07 +02:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|