added styling

This commit is contained in:
Luca Junge 2022-11-03 13:17:52 +01:00
parent d2ef65d336
commit ed7ab76ad9
16 changed files with 2349 additions and 26 deletions

View file

@ -4,18 +4,18 @@
<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="/style.css">
<link rel="stylesheet" href="{{'css/style.css' | url}}">
<title>{{ title }}</title>
</head>
<body>
<nav>
<a href="/">Home</a>
</nav>
{% include "partials/nav.njk" %}
<main>
{{ content | safe }}
<div class="container mx-auto py-5 px-1">
{{ content | safe }}
</div>
</main>
<footer>
impressum bla bla
</foot>
{% include "partials/footer.njk" %}
</body>
</html>