duckquill/templates/base.html
2023-10-13 00:55:20 +00:00

16 lines
327 B
HTML

<!DOCTYPE html>
<html lang="en">
{% include "includes/head.html" ignore missing -%}
<body>
{% include "includes/nav.html" ignore missing -%}
<div class="container">
{% block custom %}{%- endblock -%}
{% block content %}{%- endblock -%}
</div>
{% include "includes/footer.html" ignore missing -%}
</body>
</html>