75 lines
2.4 KiB
HTML
75 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
{% block titlevariable %}
|
|
{% set title = "Shadowfacts" %}
|
|
{% endblock %}
|
|
<title>{{ title }}</title>
|
|
|
|
<link rel="cannonical" href="https://{{ _domain }}{{ _permalink }}">
|
|
<link rel="alternate" type="application/rss+xml" title="Shadowfacts" href="https://{{ _domain }}/feed.xml">
|
|
|
|
<link rel="icon" href="/favicon.ico">
|
|
<link rel="apple-touch-icon-precomposed" href="/favicon-152.png">
|
|
<meta name="msapplication-TileColor" content="#F9C72F">
|
|
<meta name="msapplication-TileImage" content="/favicon-152.png">
|
|
|
|
<meta name="twitter:card" content="summary">
|
|
<meta property="og:title" content="{{ title }}">
|
|
{% block image %}
|
|
<meta property="twitter:image" content="https://{{ _domain }}/shadowfacts.png">
|
|
<meta property="og:image" content="https://{{ _domain }}/shadowfacts.png">
|
|
{% endblock %}
|
|
<meta property="og:url" content="https://{{ _domain }}{{ _permalink }}">
|
|
<meta property="og:site_name" content="Shadowfacts">
|
|
|
|
{% block head %}{% endblock %}
|
|
|
|
<link rel="stylesheet" href="/css/main.css?{{ _stylesheet_cache_buster }}">
|
|
</head>
|
|
<body itemscope itemtype="https://schema.org/Blog">
|
|
|
|
<header>
|
|
<div class="container">
|
|
<h1><a href="/">Shadowfacts</a></h1>
|
|
<p>The outer part of a shadow is called the penumbra.</p>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="container">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</main>
|
|
|
|
<footer>
|
|
<div class="container">
|
|
<ul>
|
|
<li><a href="/archive/">Archive</a></li>
|
|
<li><a href="/elsewhere/">Contact</a></li>
|
|
<!-- TODO: webring -->
|
|
<li>Generated on {{ _generated_at | pretty_date }}, by <a href="https://git.shadowfacts.net/shadowfacts/v7">v7</a>.</li>
|
|
</ul>
|
|
</div>
|
|
</footer>
|
|
|
|
<script data-goatcounter="https://shadowfacts.goatcounter.com/count" async src="//gc.zgo.at/count.v3.js" crossorigin="anonymous"></script>
|
|
|
|
{% if _development %}
|
|
<script>
|
|
let ws = new WebSocket("/_dev/live_reload");
|
|
ws.onmessage = (event) => {
|
|
if (event.data == "regenerated") {
|
|
ws.close();
|
|
window.location.reload();
|
|
}
|
|
};
|
|
</script>
|
|
{% endif %}
|
|
</body>
|
|
</html>
|