nopaque/app/templates/materialize/base.html.j2

46 lines
1.4 KiB
Plaintext
Raw Normal View History

2020-10-23 06:51:46 +00:00
{% block doc %}
<!DOCTYPE html>
<html{% block html_attribs %}{% endblock html_attribs %}>
2021-12-01 13:15:20 +00:00
{% block html %}
2020-10-23 06:51:46 +00:00
<head>
{% block head %}
<title>{% block title %}{{title|default}}{% endblock title %}</title>
{% block metas %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% endblock metas %}
{% block styles %}
2024-04-11 09:08:37 +00:00
<link rel="stylesheet" href="{{ url_for('static', filename='libraries/material-design-icons/css/material-icons.css') }}">
<link rel="stylesheet" href="{{ url_for('static', filename='libraries/materialize/css/materialize.min.css') }}">
2020-10-23 06:51:46 +00:00
{% endblock styles %}
{% endblock head %}
</head>
<body{% block body_attribs %}{% endblock body_attribs %}>
{% block body %}
2020-10-26 11:46:46 +00:00
<header{% block header_attribs %}{% endblock header_attribs %}>
{% block header %}
{% block navbar %}
{% endblock navbar %}
{% block sidenav %}
{% endblock sidenav %}
{% endblock header %}
</header>
<main{% block main_attribs %}{% endblock main_attribs %}>
{% block main %}{% endblock main %}
</main>
<footer{% block footer_attribs %}{% endblock footer_attribs %}>
{% block footer %}{% endblock footer %}
</footer>
2020-10-23 06:51:46 +00:00
{% block scripts %}
2024-04-11 09:08:37 +00:00
<script src="{{ url_for('static', filename='libraries/materialize/js/materialize.min.js') }}"></script>
2020-10-23 06:51:46 +00:00
{% endblock scripts %}
{% endblock body %}
</body>
2021-12-01 13:15:20 +00:00
{% endblock html %}
2020-10-23 06:51:46 +00:00
</html>
{% endblock doc %}