mirror of
https://0xacab.org/jvoisin/mat2-web.git
synced 2025-08-01 18:56:03 -04:00
43 lines
No EOL
1.4 KiB
HTML
43 lines
No EOL
1.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<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>
|
|
|
|
<body class="flex flex-col h-screen justify-between">
|
|
<header class="h-20 w-full bg-blue-light my-0 flex justify-center">
|
|
<a href='.' class="mt-8">
|
|
<img class='max-h-28' src="{{ url_for('static', filename='logo.png') }}" alt="mat2 logo" />
|
|
</a>
|
|
</header>
|
|
|
|
<section class="mb-auto mt-12 pt-8">
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
<div class="text-white px-6 py-4 border-0 relative mb-4 bg-red-500">
|
|
<span class="inline-block align-middle mr-8">
|
|
{{ message }}
|
|
</span>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
{% block content %}{% endblock %}
|
|
</section>
|
|
|
|
<footer class="h-10 flex justify-center">
|
|
© <a href='https://dustri.org'>jvoisin</a> -
|
|
<a href='https://0xacab.org/jvoisin/mat2-web'>source</a> -
|
|
♥
|
|
</footer>
|
|
</body> |