2019-07-04 08:40:23 +00:00
|
|
|
|
<html>
|
|
|
|
|
<head>
|
2019-07-04 09:36:23 +00:00
|
|
|
|
{% if title %}
|
|
|
|
|
<title>Opaque – {{ title }}</title>
|
|
|
|
|
{% else %}
|
|
|
|
|
<title>Opaque</title>
|
|
|
|
|
{% endif %}
|
2019-07-04 09:11:07 +00:00
|
|
|
|
<!-- import materialize icons css -->
|
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='fonts/material-design-icons-3.0.1/iconfont/material-icons.css') }}">
|
2019-07-04 08:40:23 +00:00
|
|
|
|
<!--Import materialize.css-->
|
2019-07-04 09:11:07 +00:00
|
|
|
|
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/materialize.min.css') }}" media="screen,projection"/>
|
2019-07-04 08:40:23 +00:00
|
|
|
|
<!--Let browser know website is optimized for mobile-->
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
|
|
|
</head>
|
|
|
|
|
<body class="blue-grey lighten-5">
|
2019-07-04 09:11:07 +00:00
|
|
|
|
{% block body %}
|
2019-07-04 09:36:23 +00:00
|
|
|
|
|
2019-07-04 09:11:07 +00:00
|
|
|
|
{% endblock %}
|
2019-07-04 08:40:23 +00:00
|
|
|
|
|
|
|
|
|
<!--JavaScript at end of body for optimized loading-->
|
2019-07-04 09:11:07 +00:00
|
|
|
|
<script type="text/javascript" src="{{ url_for('static', filename='js/materialize.min.js') }}"></script>
|
2019-07-04 08:40:23 +00:00
|
|
|
|
</body>
|
|
|
|
|
</html>
|