mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
36 lines
1.1 KiB
Django/Jinja
36 lines
1.1 KiB
Django/Jinja
{% block doc %}
|
|
<!DOCTYPE html>
|
|
<html{% block html_attribs %}{% endblock html_attribs %}>
|
|
{% block html %}
|
|
<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 %}
|
|
<link href="{{ url_for('static', filename='css/material_design_icons.min.css') }}" rel="stylesheet">
|
|
<link href="{{ url_for('static', filename='css/materialize.min.css') }}" media="screen,projection" rel="stylesheet">
|
|
{% endblock styles %}
|
|
{% endblock head %}
|
|
</head>
|
|
<body{% block body_attribs %}{% endblock body_attribs %}>
|
|
{% block body %}
|
|
{% block navbar %}
|
|
{% endblock navbar %}
|
|
{% block sidenav %}
|
|
{% endblock sidenav %}
|
|
{% block content %}
|
|
{% endblock content %}
|
|
|
|
{% block scripts %}
|
|
<script src="{{ url_for('static', filename='js/materialize.min.js') }}"></script>
|
|
{% endblock scripts %}
|
|
{% endblock body %}
|
|
</body>
|
|
{% endblock html %}
|
|
</html>
|
|
{% endblock doc %}
|