1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-11-10 04:02:17 +00:00
supysonic/templates/layout.html

13 lines
234 B
HTML
Raw Normal View History

2012-10-13 09:29:48 +00:00
<!DOCTYPE html>
<title>Supysonic</title>
<div class="page">
<h1>Supysonic</h1>
<div class="flash">
{% for message in get_flashed_messages() %}
<p>{{ message }}</p>
{% endfor %}
</div>
{% block body %}{% endblock %}
</div>