Gordon Pedersen
08ee2813f9
All checks were successful
/ weblog.lol (push) Successful in 11s
also added a symlink for local dev
42 lines
682 B
HTML
42 lines
682 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>{weblog-title}{separator}{post-title}</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/styles.css?v0.0.3">
|
|
{feeds}
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<h1 class="weblog-title"><a href="{base-path}">{weblog-title}</a></h1>
|
|
{navigation}
|
|
</header>
|
|
|
|
<main>
|
|
|
|
<article>
|
|
{body}
|
|
<aside class="post-info">
|
|
<i class="fa-solid fa-clock"></i> {date}
|
|
</aside>
|
|
<aside class="post-tags">
|
|
{tags}
|
|
</aside>
|
|
</article>
|
|
|
|
<hr>
|
|
|
|
<h2>Recent posts</h2>
|
|
|
|
{recent-posts}
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<p>Made with <a href="https://weblog.lol">weblog.lol</a>.</p>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|