Files
blog/templates/base.html

13 lines
324 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>