ui - automated build

This commit is contained in:
bunkerity
2020-12-11 10:52:44 +01:00
parent 4ea01bd93f
commit 559b7835d4
21 changed files with 442 additions and 1 deletions

24
ui/templates/base.html Normal file
View File

@@ -0,0 +1,24 @@
<!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">
<div class="container">
{% block content %}{% endblock %}
</div>
</main>
{% include "footer.html" %}
{% include "end.html" %}
</body>
</html>