galerie-site/templates/index.html
Julius 85956f157b
All checks were successful
continuous-integration/drone/push Build is passing
Update Galerie 15 jaar
2023-01-13 00:33:30 +01:00

32 lines
661 B
HTML

<!DOCTYPE html>
<html lang="nl">
<head>
{% include "common_head.html" %}
<style>
img {
margin-after: 10px;
}
table#fotos {
width: 400px !important;
margin-left: 25px;
}
</style>
</head>
<body>
<div class="content">
{% include "common_index.html" %}
<div style="margin-top: 25px; " 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>