36 lines
No EOL
844 B
HTML
36 lines
No EOL
844 B
HTML
<!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</title>
|
|
<link rel="stylesheet" href="styles.css"/>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<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>
|
|
<h1>UNCOVERING THE RECURSIVE REAL.</h1>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="latest">
|
|
<h2>Latest</h2>
|
|
<div id="posts" class="grid">
|
|
<p class="loading">Loading posts…</p>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html> |