cl-deck-builder2/templates/layouts/default.html
2024-03-05 22:11:33 -05:00

20 lines
430 B
HTML

<!doctype html>
<html lang="en">
<head>
{% include "layouts/html-head.html" %}
<title>{% block title %}{% endblock %}</title>
</head>
<body>
{% include "navbar.html" %}
<section id="main" class="section">
<!-- Messages Section -->
{% include "messages.html" %}
<!-- Main Section -->
{% block content %}{% endblock %}
</section>
{% include "footer.html" %}
</body>
</html>