Viktor Varland
9f7a77273f
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
24 lines
570 B
Plaintext
24 lines
570 B
Plaintext
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{{ title }}</title>
|
|
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="/main.css" rel="stylesheet">
|
|
</head>
|
|
<body class="bg-white text-black dark:bg-black dark:text-white">
|
|
<section class="flow md:container md:mx-auto p-4">
|
|
{% block nav %}
|
|
<p>
|
|
<a href="/">{{ sitename }}</a>
|
|
</p>
|
|
{% endblock %}
|
|
|
|
{% block main %}
|
|
{{ contents | safe }}
|
|
{% endblock %}
|
|
</section>
|
|
</body>
|
|
</html>
|