33 lines
1007 B
HTML
33 lines
1007 B
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
<title>Freundesbuch – Ansicht</title>
|
||
<link rel="stylesheet" href="/assets/style.css" />
|
||
<link rel="stylesheet" href="/book/book.css" />
|
||
</head>
|
||
<body>
|
||
|
||
<div class="top-bar card" style="border-radius:0;">
|
||
<h1 style="margin:0;">🎠 Freundesbuch</h1>
|
||
<div style="display:flex; gap:0.6em; flex-wrap:wrap;">
|
||
<button class="secondary" id="pdfBtn">⬇️ Als PDF exportieren</button>
|
||
<a class="btn secondary" href="/admin">← Zur Übersicht</a>
|
||
</div>
|
||
</div>
|
||
|
||
<div id="bookRoot" class="book-root">
|
||
<p class="muted" style="text-align:center; margin-top:3em;">Lädt...</p>
|
||
</div>
|
||
|
||
<div class="book-nav" id="bookNav" style="display:none;">
|
||
<button id="prevBtn" class="secondary">← Zurück</button>
|
||
<span id="pageIndicator"></span>
|
||
<button id="nextBtn" class="secondary">Weiter →</button>
|
||
</div>
|
||
|
||
<script src="/book/book.js"></script>
|
||
</body>
|
||
</html>
|