2019-06-08 13:33:13 +02:00
|
|
|
<!DOCTYPE html>
|
2019-06-08 19:54:47 +02:00
|
|
|
<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" %}
|
2019-06-08 19:54:47 +02:00
|
|
|
<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>
|