49 lines
1.5 KiB
HTML
49 lines
1.5 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">
|
|
<h1>Red Head</h1>
|
|
<div class="search-container">
|
|
<span class="search-icon">🔍</span>
|
|
<input
|
|
type="text"
|
|
id="search-input"
|
|
placeholder="Search posts by title..."
|
|
autocomplete="off"
|
|
/>
|
|
</div>
|
|
<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>
|