2018-11-15 16:03:12 +01:00
|
|
|
<!doctype html>
|
2021-03-18 09:25:11 +01:00
|
|
|
<html lang="en">
|
2021-03-18 11:35:04 +01:00
|
|
|
|
|
|
|
<head>
|
|
|
|
<title>MAT2</title>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<link href="{{ url_for('static', filename='raleway.woff2') }}" as="font" type="font/woff2" rel="preload">
|
|
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.png') }}">
|
|
|
|
{% assets 'css' %}
|
|
|
|
<link rel="stylesheet" href="{{ ASSET_URL }}">
|
|
|
|
{% endassets %}
|
|
|
|
</head>
|
|
|
|
|
2021-03-18 10:38:18 +01:00
|
|
|
<body class="flex flex-col h-screen justify-between">
|
|
|
|
<header class="h-20 w-full bg-blue-100 my-0 flex justify-center">
|
|
|
|
<a href='.' class="mt-8">
|
2021-03-18 11:35:04 +01:00
|
|
|
<img class='max-h-28' src="{{ url_for('static', filename='logo.png') }}" alt="mat2 logo" />
|
2021-03-18 10:38:18 +01:00
|
|
|
</a>
|
2019-10-28 12:15:31 +01:00
|
|
|
</header>
|
2018-11-15 16:03:12 +01:00
|
|
|
|
2021-03-18 11:35:04 +01:00
|
|
|
|
|
|
|
|
|
|
|
<section class="mb-auto mt-8 pt-8">
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
|
|
{% if messages %}
|
|
|
|
{% for message in messages %}
|
|
|
|
<div class="text-white px-6 py-4 border-0 rounded relative mb-4 bg-red-500">
|
|
|
|
<span class="text-xl inline-block mr-5 align-middle">
|
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
|
|
|
|
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
|
|
|
d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
|
|
|
</svg>
|
|
|
|
</span>
|
|
|
|
<span class="inline-block align-middle mr-8">
|
|
|
|
{{ message }}
|
|
|
|
</span>
|
2020-04-13 22:09:14 +02:00
|
|
|
</div>
|
2021-03-18 11:35:04 +01:00
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
2020-04-13 22:09:14 +02:00
|
|
|
|
2021-03-18 10:38:18 +01:00
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</section>
|
2018-11-15 16:03:12 +01:00
|
|
|
|
2021-03-18 10:38:18 +01:00
|
|
|
<footer class="h-10 flex justify-center">
|
2020-04-13 22:09:14 +02:00
|
|
|
© <a href='https://dustri.org'>jvoisin</a> -
|
|
|
|
<a href='https://0xacab.org/jvoisin/mat2-web'>source</a> -
|
|
|
|
♥
|
|
|
|
</footer>
|
2021-03-18 11:35:04 +01:00
|
|
|
</body>
|