mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
45 lines
1.6 KiB
Django/Jinja
45 lines
1.6 KiB
Django/Jinja
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
{% if title %}
|
||
<title>Opaque – {{ title }}</title>
|
||
{% else %}
|
||
<title>Opaque</title>
|
||
{% endif %}
|
||
<link href="{{ url_for('static', filename='images/favicon.png') }}" rel="icon" type="image/png">
|
||
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='fonts/material-icons/material-icons.css') }}">
|
||
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/materialize.min.css') }}" media="screen,projection"/>
|
||
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/opaque.css') }}" media="screen,projection"/>
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
</head>
|
||
<body>
|
||
{% include 'header.html.j2' %}
|
||
|
||
<main class="grey lighten-5">
|
||
<div class="container">
|
||
<div class="row">
|
||
{% block page_content %}
|
||
{% endblock %}
|
||
</div>
|
||
</div>
|
||
</main>
|
||
|
||
{% include 'footer.html.j2' %}
|
||
|
||
<!--JavaScript at end of body for optimized loading-->
|
||
<script type="text/javascript" src="{{ url_for('static', filename='js/materialize.min.js') }}"></script>
|
||
<script>
|
||
M.AutoInit();
|
||
M.Dropdown.init(
|
||
document.getElementById("nav-notifications"),
|
||
{"alignment": "right", "constrainWidth": false, "coverTrigger": false}
|
||
);
|
||
M.Dropdown.init(
|
||
document.getElementById("nav-settings"),
|
||
{"alignment": "right", "constrainWidth": false, "coverTrigger": false}
|
||
);
|
||
</script>
|
||
</body>
|
||
</html>
|