21 lines
785 B
Handlebars
21 lines
785 B
Handlebars
<html>
|
|
<head>
|
|
<script src="https://unpkg.com/htmx.org@2.0.3" integrity="sha384-0895/pl2MU10Hqc6jd4RvrthNlDiE9U1tWmX7WRESftEDRosgxNsQG/Ze9YMRzHq" crossorigin="anonymous"></script>
|
|
<link rel="stylesheet" href="/style/monospace.css">
|
|
<link rel="stylesheet" href="/style/style.css">
|
|
</head>
|
|
<body style="max-width: 120ch; margin: auto;">
|
|
<header style="display: flex; justify-content: space-between; width: 100%;">
|
|
<h1>sepiatones.xyz</h1>
|
|
<nav>
|
|
<a href="/">about</a>
|
|
<a hx-get="/recent_posts" hx-target="#sidebar">posts</a>
|
|
</nav>
|
|
</header>
|
|
<main id="primary" style="display: flex; justify-content: space-between;">
|
|
{{{content}}}
|
|
<aside id="sidebar" style="width: 60ch; padding: var(--line-height) 1ch;"></aside>
|
|
</main>
|
|
</body>
|
|
</html>
|