walter-boente_book-collection/template.html
2026-05-27 22:30:01 +02:00

70 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="data:image/x-icon;" type="image/x-icon">
<title>$title$</title>
<script src="/csspageweaver/main.js" type="module"></script>
<link rel="stylesheet" href="/fonts/Moulin/stylesheet.css">
<link rel="stylesheet" href="/fonts/BasisGrotesquePro/stylesheet.css">
<link rel="stylesheet" href="/fonts/Louize/stylesheet.css">
</head>
<body>
<section id="section__half-title">
<h1>$title$</h1>
<span class="running-book">$title$</span>
</section>
<section id="section__title-details">
$for(details-list)$
<dl>
<dt>$it.label$</dt>
<dd>$it.text$</dd>
</dl>
$endfor$
</section>
<section id="section__title">
<div class="group-title">
<h1>$title$</h1>
<h2>$subtitle$</h2>
</div>
<div class="group">
<dl>
<dt>Author</dt>
<dd>$author$</dd>
</dl>
<dl>
<dt>Publisher</dt>
<dd>$publisher$</dd>
</dl>
</div>
</section>
<section id="section__toc">
<h1>Inhaltsverzeichnis</h1>
</section>
<section id="section__content">
$body$
</section>
<section id="section__colophon">
$for(colophon-list)$
<dl>
<dt>$it.label$</dt>
<dd>$it.text$</dd>
</dl>
$endfor$
</section>
</body>
</html>