2019-07-04 09:59:52 +00:00
|
|
|
|
<!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">
|
2019-07-05 09:04:45 +00:00
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='fonts/material-icons/material-icons.css') }}">
|
2019-07-04 12:59:23 +00:00
|
|
|
|
<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"/>
|
2019-07-04 09:59:52 +00:00
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
2019-07-05 09:04:45 +00:00
|
|
|
|
{% include 'header.html.j2' %}
|
2019-07-04 09:36:23 +00:00
|
|
|
|
|
2019-07-05 09:04:45 +00:00
|
|
|
|
<main class="grey lighten-5">
|
2019-07-04 10:23:09 +00:00
|
|
|
|
<div class="container">
|
|
|
|
|
<div class="row">
|
|
|
|
|
{% block page_content %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</main>
|
2019-07-04 08:40:23 +00:00
|
|
|
|
|
2019-07-05 09:04:45 +00:00
|
|
|
|
{% include 'footer.html.j2' %}
|
|
|
|
|
|
2019-07-04 09:59:52 +00:00
|
|
|
|
<!--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();
|
2019-07-04 12:59:23 +00:00
|
|
|
|
M.Dropdown.init(
|
2019-07-05 09:04:45 +00:00
|
|
|
|
document.getElementById("nav-notifications"),
|
|
|
|
|
{"alignment": "right", "constrainWidth": false, "coverTrigger": false}
|
2019-07-04 12:59:23 +00:00
|
|
|
|
);
|
|
|
|
|
M.Dropdown.init(
|
2019-07-05 09:04:45 +00:00
|
|
|
|
document.getElementById("nav-settings"),
|
|
|
|
|
{"alignment": "right", "constrainWidth": false, "coverTrigger": false}
|
2019-07-04 12:59:23 +00:00
|
|
|
|
);
|
2019-07-04 09:59:52 +00:00
|
|
|
|
</script>
|
|
|
|
|
</body>
|
2019-07-04 08:40:23 +00:00
|
|
|
|
</html>
|