bunkerweb/ui/templates/base.html

27 lines
546 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" %}
<main class="flex-shrink-0 text-center">
<div class="container">
{% block content %}{% endblock %}
</div>
</main>
<!--<div class="flex-shrink-0 container d-flex justify-content-center align-items-center" style="height: 100%; padding-top: 50px;">
</div>-->
{% include "footer.html" %}
{% include "end.html" %}
</body>
</html>