mirror of
https://github.com/spl0k/supysonic.git
synced 2024-11-10 04:02:17 +00:00
13 lines
234 B
HTML
13 lines
234 B
HTML
|
<!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>
|
||
|
|