Files
blog/templates/base.html
2024-01-31 01:47:05 +03:00

15 lines
455 B
HTML

<!-- Content-Type: application/xhtml+xml -->
<?xml version="1.0" encoding="UTF-8"?>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US">
{% 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>