galerie-site/templates/index.html

22 lines
475 B
HTML
Raw Normal View History

2019-06-08 13:33:13 +02:00
<!DOCTYPE html>
<html lang="nl">
2019-06-08 13:33:13 +02:00
<head>
{% include "common_head.html" %}
</head>
<body>
<div class="content">
{% include "common_index.html" %}
<div style="margin-top: 13px; " id="container-content">
<div style="margin-top: 0px;" id="content">
2019-06-08 13:33:13 +02:00
{{ content|safe }}
</div>
{% if request.path == "/" %}
{% include "sidebar.html" %}
{% endif %}
</div>
{% include "footer.html" %}
</div>
</body>
</html>