galerie-site/templates/index.html

22 lines
475 B
HTML

<!DOCTYPE html>
<html lang="nl">
<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">
{{ content|safe }}
</div>
{% if request.path == "/" %}
{% include "sidebar.html" %}
{% endif %}
</div>
{% include "footer.html" %}
</div>
</body>
</html>