website/_layouts/default.html

25 lines
315 B
HTML
Raw Normal View History

2019-08-13 15:16:48 +02:00
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
2021-02-02 21:24:42 +01:00
{% include sidebar.html %}
2019-08-13 15:16:48 +02:00
{% include header.html %}
<div class="page-content">
2020-12-29 21:40:17 +01:00
<div class="container-main">
2019-08-13 15:16:48 +02:00
{{ content }}
</div>
</div>
{% include footer.html %}
2020-12-29 21:40:17 +01:00
{% include bottom.html %}
2020-04-07 11:11:41 +02:00
2020-12-29 21:40:17 +01:00
{% include cookie-consent.html %}
2019-08-13 15:16:48 +02:00
</body>
</html>