1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-20 11:21:03 +00:00
supysonic/templates/layout.html

27 lines
410 B
HTML
Raw Normal View History

2012-10-13 09:29:48 +00:00
<!DOCTYPE html>
<title>Supysonic</title>
2012-10-13 12:52:39 +00:00
<style>
.flash {
border: dashed 1px red;
padding: 2px;
margin: 10px;
}
.flash p {
margin: 0;
padding: 0;
}
</style>
2012-10-13 09:29:48 +00:00
<div class="page">
<h1>Supysonic</h1>
2012-10-13 12:52:39 +00:00
{% if get_flashed_messages() %}
2012-10-13 09:29:48 +00:00
<div class="flash">
{% for message in get_flashed_messages() %}
2012-10-13 12:52:39 +00:00
<p>{{ message }}</p>
2012-10-13 09:29:48 +00:00
{% endfor %}
</div>
2012-10-13 12:52:39 +00:00
{% endif %}
2012-10-13 09:29:48 +00:00
{% block body %}{% endblock %}
</div>