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">
|
2025-11-08 19:00:48 -06:00
|
|
|
<button id="menuBtn" aria-label="Toggle menu">Menu</button>
|
2025-11-08 18:22:23 -06:00
|
|
|
<nav id="primaryNav" class="primary-nav"></nav>
|
2025-11-08 15:25:16 -06:00
|
|
|
</header>
|
|
|
|
|
|
2025-11-08 23:25:18 -06:00
|
|
|
<!-- HORIZON LAYER: Emergent Sub-Navigation -->
|
|
|
|
|
<nav id="subNav" class="sub-nav"></nav>
|
|
|
|
|
|
2025-11-08 15:25:16 -06:00
|
|
|
<aside id="sidebar">
|
2025-11-08 18:22:23 -06:00
|
|
|
<div class="sidebar-header">
|
|
|
|
|
<h3>Contents</h3>
|
|
|
|
|
<button id="toggleControls" class="toggle-btn" aria-label="Toggle filters">Filters</button>
|
2025-11-08 13:35:25 -06:00
|
|
|
</div>
|
2025-11-08 18:22:23 -06:00
|
|
|
|
|
|
|
|
<section id="postListSection">
|
|
|
|
|
<ul id="postList" role="list" aria-label="Content list"></ul>
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
<details id="filterPanel" class="filter-panel">
|
|
|
|
|
<summary>Filters & Search</summary>
|
|
|
|
|
<div class="filter-controls">
|
|
|
|
|
<label for="sectionSelect">Section</label>
|
|
|
|
|
<select id="sectionSelect"></select>
|
|
|
|
|
|
|
|
|
|
<label for="tagSelect">Tags</label>
|
|
|
|
|
<select id="tagSelect" multiple></select>
|
|
|
|
|
|
|
|
|
|
<label for="sortSelect">Sort</label>
|
|
|
|
|
<select id="sortSelect">
|
|
|
|
|
<option value="newest">Newest</option>
|
|
|
|
|
<option value="oldest">Oldest</option>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<label for="searchMode">Search</label>
|
|
|
|
|
<select id="searchMode">
|
|
|
|
|
<option value="title">Titles</option>
|
|
|
|
|
<option value="content">Content</option>
|
|
|
|
|
</select>
|
|
|
|
|
|
|
|
|
|
<input id="searchBox" placeholder="Search...">
|
|
|
|
|
</div>
|
|
|
|
|
</details>
|
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">
|
2025-11-08 18:22:23 -06:00
|
|
|
<div id="viewer" class="viewer"></div>
|
2025-11-08 15:25:16 -06:00
|
|
|
</main>
|
2025-11-08 09:05:40 -06:00
|
|
|
</body>
|
|
|
|
|
</html>
|