32 lines
661 B
HTML
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: 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> |