cbax_dev/templates/base.html

13 lines
203 B
HTML
Raw Normal View History

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