-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (72 loc) · 2.64 KB
/
index.html
File metadata and controls
80 lines (72 loc) · 2.64 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>borderless deviant</title>
<!-- Anti-White-Flash Script -->
<script>
(function() {
// Holt Einstellung oder nimmt 'dark' als Standard
const savedTheme = localStorage.getItem('theme') || 'dark';
document.documentElement.setAttribute('data-theme', savedTheme);
})();
</script>
<link rel="stylesheet" href="css/variables.css">
<link rel="stylesheet" href="css/global.css">
<link rel="stylesheet" href="css/typography.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/components.css">
<link rel="stylesheet" href="css/forms.css">
<link rel="stylesheet" href="css/utilities.css">
<link rel="stylesheet" href="css/site-index.css">
</head>
<body>
<my-header></my-header>
<my-nav></my-nav>
<main class="container">
<section class="intro">
<h2>Was ist das hier?</h2>
<p>
Eine Sammlung von Gedanken, Analysen und Beobachtungen.
Kein Redaktionsplan. Kein Post-Zwang. Nur Struktur für's eigene Denken.
</p>
<p>
Von Lobbynetzwerken über ADHS-Bewältigungsstrategien bis hin zu
Vibe-Coding und retro Games – alles was Raum braucht.
</p>
</section>
<section class="recent-posts">
<h2>Neueste Einträge</h2>
<div id="recent-posts-list">
<p class="loading">Lade Gedanken...</p>
</div>
</section>
<section class="quick-links">
<div class="link-box">
<h3>→ Strom</h3>
<p>Chronologisch. Neuestes zuerst. Einfach durchscrollen.</p>
</div>
<div class="link-box">
<h3>→ Themen</h3>
<p>Nach Interessensgebieten geclustert. Mit Hashtag-Filter.</p>
</div>
<div class="link-box">
<h3>→ Wilde Reise</h3>
<p>Thematische Tiefenbohrungen mit eigenem Design pro Bereich.</p>
</div>
</section>
</main>
<my-footer></my-footer>
<script>
// Startet das Laden der Posts, sobald die Seite bereit ist
document.addEventListener('DOMContentLoaded', () => {
if(typeof loadRecentPosts === 'function') {
loadRecentPosts('recent-posts-list', 5);
}
});
</script>
<script src="/js/layout-components.js" defer></script>
<script type="module" src="/js/main.js"></script>
</body>
</html>