thefoldwithin-earth/public/index.html

38 lines
1.2 KiB
HTML
Raw Normal View History

2025-11-08 09:59:10 -06:00
<!DOCTYPE html>
2025-11-08 09:05:40 -06:00
<html lang="en">
<head>
2025-11-08 15:25:16 -06:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>The Fold Within</title>
2025-11-08 15:35:03 -06:00
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap" rel="stylesheet">
2025-11-08 15:25:16 -06:00
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script defer src="app.js"></script>
2025-11-08 14:19:36 -06:00
</head>
2025-11-08 09:05:40 -06:00
<body>
2025-11-08 15:25:16 -06:00
<header class="topbar">
<button id="menuBtn" aria-label="Toggle menu"></button>
2025-11-08 15:48:17 -06:00
<nav id="primaryNav" class="primary-nav">
<!-- Dynamically populated in app.js -->
2025-11-08 15:25:16 -06:00
</nav>
</header>
<aside id="sidebar">
<div class="sidebar-controls">
<select id="sectionSelect"></select>
<select id="sortSelect">
<option value="newest">Newest</option>
<option value="oldest">Oldest</option>
</select>
<input id="searchBox" placeholder="Search titles...">
2025-11-08 13:35:25 -06:00
</div>
2025-11-08 15:35:03 -06:00
<ul id="postList" role="list" aria-label="Posts list"></ul>
2025-11-08 15:25:16 -06:00
</aside>
2025-11-08 12:59:07 -06:00
2025-11-08 15:25:16 -06:00
<main id="content" class="content">
<div id="viewer" class="viewer"></div>
</main>
2025-11-08 09:05:40 -06:00
</body>
</html>