Files
Grinch-AP/WebHostLib/templates/layout.html

29 lines
795 B
HTML
Raw Normal View History

2020-06-20 20:03:06 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/layout.css") }}" />
<link rel="stylesheet" type="text/css" href="{{ static_autoversion("styles/tooltip.css") }}" />
<script type="application/ecmascript" src="{{ static_autoversion("assets/layout.js") }}"></script>
2020-07-18 16:25:07 -04:00
{% block head %}
<title>Berserker's Multiworld</title>
2020-06-20 20:03:06 +02:00
{% endblock %}
</head>
<body>
2020-07-04 23:50:18 +02:00
{% with messages = get_flashed_messages() %}
{% if messages %}
2020-07-18 16:25:07 -04:00
<div>
2020-07-04 23:50:18 +02:00
{% for message in messages %}
<div class="alert alert-danger" role="alert">{{ message }}</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
2020-07-18 16:25:07 -04:00
{% block body %}
{% endblock %}
2020-07-04 23:50:18 +02:00
2020-07-18 16:25:07 -04:00
</body>
</html>