galerie-site/templates/index.html

22 lines
514 B
HTML
Raw Normal View History

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