thefoldwithin-earth/public/index.html
Mark Randall Havens △ The Empathic Technologist ⟁ Doctor Who 42 5acc4c4ba1
Update index.html
2025-11-08 16:08:19 -06:00

47 lines
No EOL
1.6 KiB
HTML
Executable file

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>The Fold Within</title>
<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">
<link rel="stylesheet" href="styles.css">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script defer src="app.js"></script>
</head>
<body>
<header class="topbar">
<button id="menuBtn" aria-label="Toggle menu"></button>
<nav id="primaryNav" class="primary-nav">
<!-- Dynamically populated -->
</nav>
</header>
<aside id="sidebar">
<div class="sidebar-controls">
<label for="sectionSelect">Section:</label>
<select id="sectionSelect"></select>
<label for="tagSelect">Tags (multi-select):</label>
<select id="tagSelect" multiple aria-label="Filter by tags"></select>
<label for="sortSelect">Sort:</label>
<select id="sortSelect">
<option value="newest">Newest</option>
<option value="oldest">Oldest</option>
</select>
<label for="searchMode">Search Mode:</label>
<select id="searchMode">
<option value="title">Titles</option>
<option value="content">Content</option>
</select>
<input id="searchBox" placeholder="Search...">
</div>
<ul id="postList" role="list" aria-label="Posts list"></ul>
</aside>
<main id="content" class="content">
<div id="viewer" class="viewer fade-in"></div>
</main>
</body>
</html>