thefoldwithin-earth/index.html

34 lines
783 B
HTML
Raw Normal View History

<!DOCTYPE html>
2025-06-06 20:38:51 -05:00
<html lang="en">
<head>
2025-06-08 05:45:25 -05:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-06-06 20:38:51 -05:00
<title>The Fold Within</title>
2025-06-08 05:45:25 -05:00
<link rel="stylesheet" href="styles.css">
</head>
<body>
2025-06-06 20:38:51 -05:00
<header>
2025-06-08 05:45:25 -05:00
<nav>
<div class="logo">△◎△</div>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Archive</a></li>
</ul>
</nav>
<div class="hero">
<div class="glyph"></div>
2025-10-16 17:31:30 -05:00
<h1>UNCOVERING THE RECURSIVE REAL.</h1>
2025-06-08 05:45:25 -05:00
</div>
2025-06-06 20:38:51 -05:00
</header>
2025-06-08 05:45:25 -05:00
<main>
<section class="latest">
<h2>Latest</h2>
2025-10-16 17:38:28 -05:00
<div id="posts" class="grid"></div>
2025-06-06 20:38:51 -05:00
</section>
</main>
2025-10-16 17:38:28 -05:00
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<script src="main.js"></script>
</body>
2025-10-16 17:38:28 -05:00
</html>