mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
22 lines
931 B
Django/Jinja
22 lines
931 B
Django/Jinja
<html>
|
|
<head>
|
|
<title>
|
|
Opaque - {% block title %}{% endblock %}
|
|
</title>
|
|
<!-- 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') }}">
|
|
<!--Import materialize.css-->
|
|
<link type="text/css" rel="stylesheet" href="{{ url_for('static', filename='css/materialize.min.css') }}" media="screen,projection"/>
|
|
<!--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">
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
|
|
|
<!--JavaScript at end of body for optimized loading-->
|
|
<script type="text/javascript" src="{{ url_for('static', filename='js/materialize.min.js') }}"></script>
|
|
</body>
|
|
</html>
|