bunkerweb/ui/templates/base.html

23 lines
415 B
HTML

{% set template_data = {"javascript": ""} %}
<!doctype html>
<html lang="en" class="h-100">
{% include "head.html" %}
<body class="d-flex flex-column h-100">
{% include "menu.html" %}
<div class="container d-flex justify-content-center align-items-center" style="height: 100%;">
{% block content %}{% endblock %}
</div>
{% include "footer.html" %}
{% include "end.html" %}
</body>
</html>