2020-06-20 18:03:06 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
2020-12-01 08:08:31 +00:00
|
|
|
<link rel="preconnect" href="https://fonts.gstatic.com">
|
2020-12-03 04:05:37 +00:00
|
|
|
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600&display=swap" rel="stylesheet">
|
2020-08-02 23:10:42 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/tooltip.css") }}" />
|
2020-10-24 18:46:27 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/cookieNotice.css") }}" />
|
2020-10-25 15:49:12 +00:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/globalStyles.css") }}" />
|
2020-12-01 02:15:47 +00:00
|
|
|
<script type="application/ecmascript" src="{{ static_autoversion("assets/styleController.js") }}"></script>
|
2020-10-24 18:46:27 +00:00
|
|
|
<script type="application/ecmascript" src="{{ static_autoversion("assets/cookieNotice.js") }}"></script>
|
2020-07-18 20:25:07 +00:00
|
|
|
{% block head %}
|
2020-12-03 04:48:10 +00:00
|
|
|
<title>MultiWorld</title>
|
2020-06-20 18:03:06 +00:00
|
|
|
{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-07-04 21:50:18 +00:00
|
|
|
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
|
|
{% if messages %}
|
2020-07-18 20:25:07 +00:00
|
|
|
<div>
|
2020-07-04 21:50:18 +00:00
|
|
|
{% for message in messages %}
|
|
|
|
<div class="alert alert-danger" role="alert">{{ message }}</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endwith %}
|
|
|
|
|
2020-07-18 20:25:07 +00:00
|
|
|
{% block body %}
|
|
|
|
{% endblock %}
|
2020-07-04 21:50:18 +00:00
|
|
|
|
2020-07-18 20:25:07 +00:00
|
|
|
</body>
|
|
|
|
</html>
|