nopaque/app/templates/base.html.j2

76 lines
2.1 KiB
Plaintext
Raw Normal View History

2024-11-21 10:12:11 +00:00
{% if title is not defined %}
{% set title = 'nopaque' %}
{% endif %}
2024-11-21 10:12:11 +00:00
{% block doc %}
<!DOCTYPE html>
<html {% block html_attributes %}lang="en"{% endblock html_attributes %}>
{% block html %}
<head {% block head_attributes %}{% endblock head_attributes %}>
{% block head %}
{% block metas %}
{% include '_base/metas.html.j2' %}
{% endblock metas %}
<title {% block title_attribs %}{% endblock title_attribs %}>
{% block title %}
{{ title }}
{% endblock title %}
</title>
{% block icons %}
{% include '_base/icons.html.j2' %}
{% endblock icons %}
{% block styles %}
{% include '_base/stylesheets.html.j2' %}
{% endblock styles %}
{% endblock head %}
2024-05-04 12:41:40 +00:00
</head>
2024-11-21 10:12:11 +00:00
<body {% block body_attributes %}{% endblock body_attributes %}>
{% block body %}
<header {% block header_attributes %}{% endblock header_attributes %}>
{% block header %}
{% block navbar %}
{% include '_base/navbar.html.j2' %}
{% endblock navbar %}
2024-11-21 10:12:11 +00:00
{% block sidenav %}
{% include '_base/sidenav.html.j2' %}
{% endblock sidenav %}
{% endblock header %}
2024-05-04 12:41:40 +00:00
</header>
2024-11-21 10:12:11 +00:00
<main {% block main_attributes %}{% endblock main_attributes %}>
{% block main %}
2024-05-04 12:41:40 +00:00
{% block page_content %}{% endblock page_content %}
2024-11-21 10:12:11 +00:00
{% endblock main %}
</main>
2024-11-21 10:12:11 +00:00
<footer {% block footer_attributes %}class="page-footer"{% endblock footer_attributes %}>
{% block footer %}
{% include '_base/footer.html.j2' %}
{% endblock footer %}
2024-05-04 12:41:40 +00:00
</footer>
2024-11-21 10:12:11 +00:00
<div {% block dropdowns_attributes %}id="dropdowns"{% endblock dropdowns_attributes %}>
{% block dropdowns %}
2024-11-21 10:12:11 +00:00
{% include '_base/dropdowns.html.j2' %}
{% endblock dropdowns %}
</div>
2024-11-21 10:12:11 +00:00
<div {% block modals_attributes %}id="modals"{% endblock modals_attributes %}>
{% block modals %}
2024-11-21 10:12:11 +00:00
{% include '_base/modals.html.j2' %}
{% endblock modals %}
</div>
2024-07-01 13:37:34 +00:00
{% block scripts %}
2024-11-21 10:12:11 +00:00
{% include '_base/scripts.html.j2' %}
2024-07-01 13:37:34 +00:00
{% endblock scripts %}
2024-11-21 10:12:11 +00:00
{% endblock body %}
2024-05-04 12:41:40 +00:00
</body>
2024-11-21 10:12:11 +00:00
{% endblock html %}
2024-05-04 12:41:40 +00:00
</html>
2024-11-21 10:12:11 +00:00
{% endblock doc %}