blob: f476d0de658bcd9de52dc754f773c03d56db727c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta http-equiv="Content-Security-Policy" content="https:" />
<title>{% block title %} {{ config.title }} {% endblock title %}</title>
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css" />
<link rel="stylesheet" href="/main.css" />
<link rel="icon" type="image/webp" href="/icon.webp" />
</head>
<body>
<header>
<h1><a href="/"><img alt="a blurry mosaic of a face" src="/icon.webp" />Josias</a></h1>
<nav>
<a href="/about">About</a>
<a href="/blogroll">Blogroll</a>
<a href="https://git.josias.dev/">Code</a>
<a href="gemini://josias.dev">Gemini</a>
</nav>
</header>
<main class="section">
<div class="container">
{% block content %} {% endblock content %}
</div>
</main>
<footer>
<p>Copyright (C) 2020-2021, Josias</p>
<p>CC BY-SA 4.0</p>
</footer>
</body>
</html>
|