examples and tutorials

This commit is contained in:
Luca Junge 2023-12-24 12:17:13 +01:00
parent 06914e6c02
commit 96bf869340
22 changed files with 159 additions and 122 deletions

View file

@ -1,34 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/assets/fontawesome/css/all.css">
<title>{{ title }}</title>
</head>
<body>
{% include "partials/header.njk" %}
<aside>
<a onclick="history.back()">
<i class="fa fa-solid fa-angle-left"></i>Zurück
</a>
{% if header %}
<div>
<img src="{{ header }}" alt="{{ title }}">
</div>
{% endif %}
<h1>{{ title }}</h1>
</aside>
<div id="content">
{{ content | safe }}
</div>
{% include "partials/footer.njk" %}
</body>
</html>