galerie-site/templates/index.html

32 lines
661 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" %}
2019-08-10 22:23:45 +02:00
<style>
img {
margin-after: 10px;
}
table#fotos {
width: 400px !important;
margin-left: 25px;
}
</style>
2019-06-08 13:33:13 +02:00
</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>