cbax_dev/templates/base.html

13 lines
226 B
HTML
Raw Normal View History

2024-10-23 03:46:54 +00:00
<!DOCTYPE html>
<html lang="en">
{% include "head.html" %}
<body>
2024-10-24 06:00:01 +00:00
<main class="flex-container">
2024-10-23 03:46:54 +00:00
{% include "nav.html" %}
{% block content %}
{% endblock %}
{% include "footer.html" %}
2024-10-24 06:00:01 +00:00
</main>
2024-10-23 03:46:54 +00:00
</body>
</html>