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 11:31:50 -06:00
|
|
|
<meta charset="utf-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
|
|
|
<title>The Fold Within</title>
|
2025-11-08 12:43:00 -06:00
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self' https://cdn.jsdelivr.net; style-src 'self' 'unsafe-inline'; img-src 'self' data:; frame-src 'self';">
|
2025-11-08 11:31:50 -06:00
|
|
|
<link rel="stylesheet" href="/styles.css">
|
2025-11-08 12:43:00 -06:00
|
|
|
<script src="https://cdn.jsdelivr.net/npm/marked@14.1.2/marked.min.js" integrity="sha384-Wk42AqblpWXvZ6w8XhUbJR7F85ZZAi9kZi5Lvsh5rFaDRkIl/u7jgvO6puJNLm7k" crossorigin="anonymous"></script>
|
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/dompurify@3.1.6/dist/purify.min.js" integrity="sha384-8Whr94hA9beo1m6H5J7VGAa9M+ZMDqUoNUdD7/0+Wy3Fkg6jL1xcLyj5tQALcSD" crossorigin="anonymous"></script>
|
2025-11-08 09:05:40 -06:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2025-11-08 11:31:50 -06:00
|
|
|
<header class="topbar">
|
|
|
|
|
<button id="navToggle">☰</button>
|
|
|
|
|
<a href="/">Home</a>
|
|
|
|
|
<a href="/about/">About</a>
|
|
|
|
|
<a href="/essays/">Essays</a>
|
|
|
|
|
<a href="/fieldnotes/">Fieldnotes</a>
|
|
|
|
|
</header>
|
|
|
|
|
<aside class="sidebar">
|
|
|
|
|
<div class="controls">
|
|
|
|
|
<select id="filter"></select>
|
|
|
|
|
<select id="sort">
|
|
|
|
|
<option value="new">Newest</option>
|
|
|
|
|
<option value="old">Oldest</option>
|
|
|
|
|
<option value="name">Name</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<input id="search" type="text" placeholder="Search titles...">
|
|
|
|
|
<nav id="tree"></nav>
|
|
|
|
|
</aside>
|
|
|
|
|
<div class="overlay"></div>
|
|
|
|
|
<main class="content">
|
|
|
|
|
<div id="meta" class="meta"></div>
|
2025-11-08 12:43:00 -06:00
|
|
|
<div id="mdView" class="viewer" style="display: none;"></div>
|
|
|
|
|
<iframe id="htmlView" sandbox="allow-scripts allow-forms allow-popups allow-modals allow-downloads" style="display: none;"></iframe>
|
|
|
|
|
<div style="display: flex; justify-content: space-between; padding: 8px 0;">
|
2025-11-08 11:31:50 -06:00
|
|
|
<button id="prev">← Prev</button>
|
|
|
|
|
<button id="next">Next →</button>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
2025-11-08 12:32:09 -06:00
|
|
|
<script src="/app.js"></script>
|
2025-11-08 09:05:40 -06:00
|
|
|
</body>
|
|
|
|
|
</html>
|