13 lines
327 B
HTML
13 lines
327 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>
|