-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstrom.html
More file actions
62 lines (49 loc) · 1.72 KB
/
strom.html
File metadata and controls
62 lines (49 loc) · 1.72 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>borderless deviant - Der Strom</title>
<!-- Anti-White-Flash Script -->
<script>
(function() {
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-strom.css">
</head>
<body>
<my-header></my-header>
<my-nav></my-nav>
<main class="container">
<section class="page-header">
<h2>Strom</h2>
<p>Chronologischer Feed. Neuestes zuerst. Ungefiltert.</p>
</section>
<!-- Filter UI (Optional für später) -->
<div class="filter-controls">
<button id="filter-toggle" >Themen-Filter</button>
<div id="theme-filters" class="is-hidden">
<p><em>Themen-Filter nicht geladen...</em></p>
</div>
</div>
<hr>
<section id="posts-stream">
<p>Lade Strom...</p>
</section>
</main>
<button id="scrollToTopBtn" title="Nach oben scrollen">↑</button>
<my-footer></my-footer>
<!-- Externe Scripts -->
<script type="module" src="/js/main.js"></script>
<script src="/js/layout-components.js" defer></script>
</body>
</html>