thefoldwithin-earth/public/index.html

61 lines
2.3 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-09 18:43:39 +00:00
<meta charset="UTF-8">
2025-11-09 19:37:10 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Fold Within v3.3.3</title>
<!-- ΔFIELD: Meta for basic SEO and responsiveness. -->
<meta name="description" content="A breathing field for recursive content horizons.">
<!-- ΔHORIZON: CDN for marked.js; required for Markdown rendering. -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/marked/4.0.0/marked.min.js"></script>
<!-- ΔFIELD: Link to styles; app.js at body end for DOM readiness. -->
2025-11-09 18:43:39 +00:00
<link rel="stylesheet" href="styles.css">
2025-11-08 14:19:36 -06:00
</head>
2025-11-08 09:05:40 -06:00
<body>
2025-11-09 19:37:10 +00:00
<!-- ΔHORIZON: Topbar as fixed anchor. -->
2025-11-09 18:43:39 +00:00
<header class="topbar">
2025-11-09 19:37:10 +00:00
<button id="menuBtn"></button>
2025-11-09 18:43:39 +00:00
<nav id="primaryNav" class="primary-nav"></nav>
</header>
2025-11-09 19:37:10 +00:00
<!-- ΔRECURSION: Subnav for nested layers. -->
2025-11-09 18:43:39 +00:00
<nav id="subNav" class="sub-nav"></nav>
2025-11-09 19:37:10 +00:00
<!-- ΔFIELD: Sidebar for lists and filters. -->
2025-11-09 18:43:39 +00:00
<aside id="sidebar">
<div class="sidebar-header">
2025-11-09 19:37:10 +00:00
<h3>Posts</h3>
<button id="toggleControls" class="toggle-btn">Filters</button>
2025-11-08 18:22:23 -06:00
</div>
2025-11-09 18:43:39 +00:00
<section id="postListSection">
2025-11-09 19:37:10 +00:00
<ul id="postList"></ul>
2025-11-09 18:43:39 +00:00
</section>
2025-11-09 19:37:10 +00:00
<!-- ΔFIELD: Details for collapsible filters. -->
2025-11-09 18:43:39 +00:00
<details id="filterPanel" class="filter-panel">
2025-11-09 19:37:10 +00:00
<summary>Filter Options</summary>
2025-11-09 18:43:39 +00:00
<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">
2025-11-09 19:37:10 +00:00
<option value="newest">Newest First</option>
<option value="oldest">Oldest First</option>
2025-11-09 18:43:39 +00:00
</select>
2025-11-09 19:37:10 +00:00
<label for="searchMode">Search Mode</label>
2025-11-09 18:43:39 +00:00
<select id="searchMode">
2025-11-09 19:37:10 +00:00
<option value="title">Title Only</option>
<option value="content">Title + Excerpt</option>
2025-11-09 18:43:39 +00:00
</select>
2025-11-09 19:37:10 +00:00
<label for="searchBox">Search</label>
<input id="searchBox" type="text" placeholder="Search...">
2025-11-09 18:43:39 +00:00
</div>
</details>
</aside>
2025-11-09 19:37:10 +00:00
<!-- ΔFIELD: Main content viewer. -->
2025-11-09 18:43:39 +00:00
<main id="content" class="content">
2025-11-09 19:37:10 +00:00
<section id="viewer" class="viewer"></section>
2025-11-09 18:43:39 +00:00
</main>
2025-11-09 19:37:10 +00:00
<script src="app.js"></script>
2025-11-08 09:05:40 -06:00
</body>
2025-11-09 18:43:39 +00:00
</html>