cbax_dev/templates/base.html
2024-10-22 23:46:54 -04:00

12 lines
203 B
HTML

<!DOCTYPE html>
<html lang="en">
{% include "head.html" %}
<body>
<main>
{% include "nav.html" %}
{% block content %}
{% endblock %}
</main>
{% include "footer.html" %}
</body>
</html>