Update index.html
This commit is contained in:
parent
e18c848268
commit
236a67c00f
1 changed files with 35 additions and 22 deletions
|
|
@ -13,35 +13,48 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header class="topbar">
|
<header class="topbar">
|
||||||
<button id="menuBtn" aria-label="Toggle menu">☰</button>
|
<button id="menuBtn" aria-label="Toggle menu">Menu</button>
|
||||||
<nav id="primaryNav" class="primary-nav">
|
<nav id="primaryNav" class="primary-nav"></nav>
|
||||||
<!-- Dynamically populated -->
|
|
||||||
</nav>
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<aside id="sidebar">
|
<aside id="sidebar">
|
||||||
<div class="sidebar-controls">
|
<div class="sidebar-header">
|
||||||
<label for="sectionSelect">Section:</label>
|
<h3>Contents</h3>
|
||||||
<select id="sectionSelect"></select>
|
<button id="toggleControls" class="toggle-btn" aria-label="Toggle filters">Filters</button>
|
||||||
<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>
|
</div>
|
||||||
<ul id="postList" role="list" aria-label="Posts list"></ul>
|
|
||||||
|
<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>
|
||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<main id="content" class="content">
|
<main id="content" class="content">
|
||||||
<div id="viewer" class="viewer fade-in"></div>
|
<div id="viewer" class="viewer"></div>
|
||||||
</main>
|
</main>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue