website/blog.html

39 lines
998 B
HTML
Raw Normal View History

2020-06-02 13:42:25 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<title>{title} midgard</title>
<link rel="stylesheet" href="../main.css"/>
<link rel="stylesheet" href="../syntax.css"/>
2020-06-02 13:42:25 +00:00
</head>
<body class="blog">
<header>
2020-06-10 22:03:35 +00:00
<a href="/">
<img src="../midgard.jpg" alt="A stuffed mouse in front of a wall with stripes of warm colours, this is Midgard's online avatar"/>
<div class="sitename">
<span class="wordmark"><span>mid</span><span>gard</span></span>
</div>
</a>
2020-06-02 13:42:25 +00:00
</header>
<main>
2020-06-09 00:16:47 +00:00
<article>
<header>
<h1>{title}</h1>
<div class="metadata">published <time datetime="{published}">{published}</time> by <span class="author">midgard</span></div>
</header>
{body}
</article>
2020-06-02 13:42:25 +00:00
</main>
<aside id="social">
<a id="rss-link" href="/rss/">Follow with RSS</a>
<a id="irc-link" href="/irc/">Contact on IRC</a>
</aside>
<footer>© 2020 midgard</footer>
</body>
</html>