Files
blog/templates/base.html
daudix d0eaa63568 Change indenting to 1 tab (4 spaces)
It's more readable this way
2024-02-27 18:38:23 +03:00

13 lines
330 B
HTML

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