thefoldwithin-earth/public/index.html
Mark Randall Havens 480da77bb1 update
2025-11-09 19:37:10 +00:00

60 lines
2.3 KiB
HTML
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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 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. -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- ΔHORIZON: Topbar as fixed anchor. -->
<header class="topbar">
<button id="menuBtn"></button>
<nav id="primaryNav" class="primary-nav"></nav>
</header>
<!-- ΔRECURSION: Subnav for nested layers. -->
<nav id="subNav" class="sub-nav"></nav>
<!-- ΔFIELD: Sidebar for lists and filters. -->
<aside id="sidebar">
<div class="sidebar-header">
<h3>Posts</h3>
<button id="toggleControls" class="toggle-btn">Filters</button>
</div>
<section id="postListSection">
<ul id="postList"></ul>
</section>
<!-- ΔFIELD: Details for collapsible filters. -->
<details id="filterPanel" class="filter-panel">
<summary>Filter Options</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 First</option>
<option value="oldest">Oldest First</option>
</select>
<label for="searchMode">Search Mode</label>
<select id="searchMode">
<option value="title">Title Only</option>
<option value="content">Title + Excerpt</option>
</select>
<label for="searchBox">Search</label>
<input id="searchBox" type="text" placeholder="Search...">
</div>
</details>
</aside>
<!-- ΔFIELD: Main content viewer. -->
<main id="content" class="content">
<section id="viewer" class="viewer"></section>
</main>
<script src="app.js"></script>
</body>
</html>