-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (65 loc) · 2.95 KB
/
index.html
File metadata and controls
66 lines (65 loc) · 2.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0"/>
<title>[TITEL] — [AUTOR]</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; background: #f5f5f2; }
body {
font-family: "Helvetica Neue", Arial, sans-serif;
min-height: 100vh;
display: flex; flex-direction: column; align-items: center; justify-content: center;
padding: 2rem 1.5rem;
}
.card {
background: #fff; border: 1px solid #ddd; border-top: 5px solid #1a4e8a;
border-radius: 8px; padding: 2.2rem 2.5rem 2rem;
max-width: 560px; width: 100%;
box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.card h1 { font-size: 1.25rem; font-weight: 700; color: #1a1a1a; line-height: 1.3; margin-bottom: .3rem; }
.card .subtitle { font-size: .85rem; color: #666; font-style: italic; margin-bottom: .6rem; line-height: 1.4; }
.card .meta { font-size: .78rem; color: #999; margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid #eee; }
.btn {
display: flex; align-items: center; gap: .75rem;
background: #1a4e8a; color: #fff; text-decoration: none;
border-radius: 5px; padding: .75rem 1.1rem; margin-bottom: .55rem;
font-size: .92rem; font-weight: 500;
box-shadow: 0 2px 6px rgba(0,0,0,.12); transition: background .15s;
}
.btn:hover { background: #0d2e55; }
.btn .icon { font-size: 1.15rem; flex-shrink: 0; }
.btn .label { flex: 1; }
.btn .desc { font-size: .73rem; opacity: .75; display: block; margin-top: .05rem; font-weight: 400; }
.btn.muted { background: #4a6fa5; }
.btn.muted:hover { background: #2e4e7a; }
footer { margin-top: 1.5rem; font-size: .72rem; color: #bbb; text-align: center; }
</style>
</head>
<body>
<div class="card">
<h1 id="page-title">[TITEL DES ARTIKELS]</h1>
<p class="subtitle" id="page-subtitle">[UNTERTITEL]</p>
<p class="meta" id="page-meta">[AUTOR] · [VERANSTALTUNG] · [DATUM]</p>
<a class="btn" href="standalone.html">
<span class="icon">📄</span>
<span class="label">Fachartikel<span class="desc">Vollständiger Text, [N] Kapitel, [M] Quellen</span></span>
</a>
<a class="btn muted" href="presentation/index.html">
<span class="icon">📊</span>
<span class="label">Folien<span class="desc">Präsentation für [VERANSTALTUNG]</span></span>
</a>
<a class="btn muted" href="quellen.html">
<span class="icon">📚</span>
<span class="label">Quellenverzeichnis<span class="desc">[M] Quellen mit Bewertung, Filter und Suche</span></span>
</a>
<a class="btn muted" href="handbuch.html">
<span class="icon">📖</span>
<span class="label">Handbuch<span class="desc">Installation, Funktionen, Build-System</span></span>
</a>
</div>
<footer>Erstellt mit Unterstützung von Claude (Anthropic) · Alle Quellen ausgewiesen</footer>
</body>
</html>