Files
flask-json-dream-website/templates/default_content.html
2020-08-29 13:33:03 +02:00

23 lines
492 B
HTML

<!doctype html>
<html lang="en">
<head>
{% include 'head.html' %}
</head>
<body class="bg-special" {% if "FORCE_BG_COLOR" in conf %} style="background-color: {{ conf['FORCE_BG_COLOR'] }} !important;" {% endif %}>
{% include 'navbar.html' %}
<div class="container mt-5 mb-5 h-100">
<div class="row impressum mt-5"></div>
<div class="col-lg-12">
{{ markupText }}
<div class="pb-3"></div>
</div>
</div>
</div>
{% include 'footer.html' %}
</body>
</html>