reynir.dk/templates/layout.html

33 lines
840 B
HTML
Raw Normal View History

2023-11-14 08:19:24 +00:00
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Reynir 网 - {{ title }}</title>
<link rel="stylesheet" type="text/css" href="/css/default.css" />
2023-11-14 08:19:24 +00:00
<link rel="me" value="https://bsd.network/@reynir" />
2024-02-18 15:45:09 +00:00
{{ head_extra or ""|safe }}
2023-11-14 08:19:24 +00:00
</head>
<body>
<header>
<div id="logo">
<a href="/">Reynir</a>
2023-11-14 08:19:24 +00:00
</div>
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/contact.html">Contact</a>
<a href="/archive.html">Blog</a>
2023-11-14 08:19:24 +00:00
</nav>
</header>
<main>
{%- autoescape false -%}
{{ body }}
{% endautoescape %}
</main>
<footer>
This is a footer.
</footer>
</body>
</html>