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>
|
|
|
|
|
<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>
|
|
|
|
|
<nav class="primary-nav">
|
|
|
|
|
<a href="#/">Home</a>
|
|
|
|
|
<a href="#/about/">About</a>
|
|
|
|
|
<a href="#/essays/">Essays</a>
|
|
|
|
|
<a href="#/fieldnotes/">Fieldnotes</a>
|
|
|
|
|
</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:25:16 -06:00
|
|
|
<ul id="postList"></ul>
|
|
|
|
|
</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>
|