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>
|
|
|
|
|
|
|
|
|
|
|
|
{# ── Copyright / imprint page ── #}
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
|
|
|
|
|
{# ── Table of contents ── #}
|
|
|
|
|
|
<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>
|
|
|
|
|
|
|
2026-05-03 19:14:43 +02:00
|
|
|
|
{# ── Section title — keeps stories starting on an even (left) page ── #}
|
|
|
|
|
|
<div class="page page--section">
|
|
|
|
|
|
<div class="section-title-inner">
|
|
|
|
|
|
<span class="section-ornament">❧</span>
|
|
|
|
|
|
<h2 class="section-title">Die Geschichten</h2>
|
|
|
|
|
|
<span class="section-rule"></span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-05-03 15:38:07 +02:00
|
|
|
|
{# ── 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 %}
|
|
|
|
|
|
|
|
|
|
|
|
{# ── Finale page ── #}
|
|
|
|
|
|
<div class="page page--finale">
|
|
|
|
|
|
{% if finale.image %}
|
|
|
|
|
|
<img class="finale-image" src="{{ finale.image }}" alt="Das Kaleidoskop – alle zwölf Welten">
|
|
|
|
|
|
{% else %}
|
2026-05-03 18:39:42 +02:00
|
|
|
|
<div class="placeholder-image" style="background: #0d0d2b; width:100%; height:100%;">
|
|
|
|
|
|
<div class="placeholder-label">
|
|
|
|
|
|
<span class="placeholder-scene">Finale-Illustration (alle 12 Welten)</span>
|
|
|
|
|
|
</div>
|
2026-05-03 15:38:07 +02:00
|
|
|
|
</div>
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
<div class="finale-overlay">
|
|
|
|
|
|
<h2>Das Kaleidoskop</h2>
|
|
|
|
|
|
<p>Alle zwölf Welten auf einen Blick</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|