mat2-web/templates/base.html

49 lines
1.6 KiB
HTML
Raw Normal View History

2018-11-15 16:03:12 +01:00
<!doctype html>
<html>
<head>
<title>mat2 - web edition</title>
<link href="{{url_for('static', filename='raleway.woff2') }}" as="font" type="font/woff2" rel="preload">
<link rel="stylesheet" href="{{ url_for('static', filename='normalize.css') }}" type="text/css" />
2019-10-28 12:15:31 +01:00
<link rel="stylesheet" href="{{ url_for('static', filename='uikit.min.css') }}" type="text/css" />
2018-11-15 16:03:12 +01:00
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}" type="text/css" />
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.png') }}">
2019-02-23 13:07:41 +01:00
<script defer src="{{url_for('static', filename='script.js') }}"></script>
2018-11-15 16:03:12 +01:00
</head>
<body>
2019-10-28 12:15:31 +01:00
<header class="main-header">
<div class="uk-container">
<div class="row">
<div class="two-half column">
<a href='.' class="u-center-block">
<img class='logo' src="{{ url_for('static', filename='logo.png') }}" alt="mat2 logo"/>
</a>
</div>
</div>
</div>
</header>
<div class="uk-container uk-flex uk-flex-center">
<div class="row uk-flex uk-flex-center">
2018-11-15 16:03:12 +01:00
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class=flashes>
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
</div>
<section>
2019-10-28 12:15:31 +01:00
<div class="row uk-flex uk-flex-center">
{% block content %}{% endblock %}
</div>
2018-11-15 16:03:12 +01:00
</section>
<footer>
© <a href='https://dustri.org'>jvoisin</a> -
<a href='https://0xacab.org/jvoisin/mat2-web'>source</a> -
</footer>
</body>