Replace section-title page with proper title page (p.2)

Page structure: imprint (p.1) → title page (p.2) → TOC (p.3) → stories (p.4+).
Title page shows title/subtitle/author in Cormorant Garamond. Removes the
artificial section-title buffer in favour of a meaningful front matter page.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-03 19:18:12 +02:00
parent 6b61cf206a
commit 0ced340519
3 changed files with 40 additions and 28 deletions
+12 -11
View File
@@ -9,7 +9,7 @@
</head>
<body>
{# ── Copyright / imprint page ── #}
{# ── Page 1 (right): Copyright / imprint ── #}
<div class="page page--imprint">
<div class="imprint-content">
<p>{{ frontMatter.title or 'Das Kaleidoskop der Schlummerwelten' }}</p>
@@ -18,7 +18,17 @@
</div>
</div>
{# ── Table of contents ── #}
{# ── 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 ── #}
<div class="page page--toc">
<h2 class="toc-title">Die zwölf Schlummerwelten</h2>
<ol class="toc-list">
@@ -28,15 +38,6 @@
</ol>
</div>
{# ── 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>
{# ── Stories ── #}
{% for story in stories %}
{% include "story-spread.html" %}