redhead/index.html

41 lines
1.2 KiB
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Red Head</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="container">
<header class="header">
<div style="flex: 1"></div>
<h1>Red Head</h1>
<button
id="dark-mode-toggle"
class="dark-mode-toggle"
aria-label="Toggle dark mode"
>
<span class="dark-mode-icon">🌙</span>
</button>
</header>
<main class="content">
<div id="posts-container" class="posts-container">
<!-- Posts will be loaded here -->
</div>
<div id="loading" class="loading hidden">
Loading more posts...
</div>
<div id="no-more" class="no-more hidden">
No more posts to load
</div>
</main>
</div>
<script src="app.js"></script>
</body>
</html>