website/templates/blog.html
Midgard 8631f7f7db
Rename to blog.rss
Web server will set MIME type correctly if file ends with .rss
2020-06-16 15:19:03 +02:00

39 lines
1.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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"/>
<link rel="alternate" type="application/rss+xml" href="../blog.rss"/>
</head>
<body class="blog">
<header>
<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>
</header>
<main>
<article>
<header>
<h1>{title}</h1>
<div class="metadata">published <time datetime="{published}">{published}</time> by <span class="author">midgard</span></div>
</header>
{body}
</article>
</main>
<aside id="social">
<a id="rss-link" href="../blog.rss">Follow with RSS</a>
<a id="irc-link" href="../irc">Contact on IRC</a>
</aside>
<footer>© 2020 midgard</footer>
</body>
</html>