Files
blog/templates/base.html
2024-02-04 00:32:33 +03:00

13 lines
334 B
HTML

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