22 lines
514 B
HTML
22 lines
514 B
HTML
|
<!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>
|