34 lines
959 B
HTML
34 lines
959 B
HTML
|
<!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="{{root}}/css/default.css" />
|
||
|
<link rel="stylesheet" type="text/css" href="{{root}}/css/syntax.css" />
|
||
|
<link rel="me" value="https://bsd.network/@reynir" />
|
||
|
{{ head_extra|safe }}
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<div id="logo">
|
||
|
<a href="{{root}}/">Reynir</a>
|
||
|
</div>
|
||
|
<nav>
|
||
|
<a href="{{root}}/">Home</a>
|
||
|
<a href="{{root}}/about.html">About</a>
|
||
|
<a href="{{root}}/contact.html">Contact</a>
|
||
|
<a href="{{root}}/archive.html">Blog</a>
|
||
|
</nav>
|
||
|
</header>
|
||
|
<main>
|
||
|
{%- autoescape false -%}
|
||
|
{{ body }}
|
||
|
{% endautoescape %}
|
||
|
</main>
|
||
|
<footer>
|
||
|
This is a footer.
|
||
|
</footer>
|
||
|
</body>
|
||
|
</html>
|