nopaque/app/templates/base.html.j2

51 lines
1.2 KiB
Plaintext
Raw Normal View History

{% extends "materialize/base.html.j2" %}
{% block html_attribs %} lang="en"{% endblock html_attribs %}
{% block head %}
{{ super() }}
<link href="{{ url_for('static', filename='images/nopaque_-_favicon.png') }}" rel="icon">
{% endblock head %}
{% block metas %}
<meta charset="UTF-8">
{{ super() }}
{% endblock metas %}
{% block title %}{{ title }}{% endblock title %}
{% block styles %}
{{ super() }}
2023-11-13 14:53:14 +00:00
{% include "_base/styles.html.j2" %}
{% endblock styles %}
{% block navbar %}
2023-11-13 14:53:14 +00:00
{% include "_base/navbar.html.j2" %}
{% endblock navbar %}
{% block sidenav %}
{% if current_user.is_authenticated %}
2023-11-13 14:53:14 +00:00
{% include "_base/sidenav.html.j2" %}
{% endif %}
{% endblock sidenav %}
{% block main_attribs %} class="background-color"{% endblock main_attribs %}
{% block main %}
{% block page_content %}{% endblock page_content %}
2021-07-16 08:51:39 +00:00
<div id="modals">
2021-12-01 13:15:20 +00:00
{% block modals %}
2023-11-13 14:53:14 +00:00
{% include "_base/modals.html.j2" %}
2021-12-01 13:15:20 +00:00
{% endblock modals %}
2021-07-16 08:51:39 +00:00
</div>
{% endblock main %}
{% block footer_attribs %} class="page-footer primary-variant-color"{% endblock footer_attribs %}
{% block footer %}
2023-11-13 14:53:14 +00:00
{% include "_base/footer.html.j2" %}
{% endblock footer %}
{% block scripts %}
{{ super() }}
2023-11-13 14:53:14 +00:00
{% include "_base/scripts.html.j2" %}
{% endblock scripts %}