20 lines
513 B
HTML
20 lines
513 B
HTML
<html>
|
|
|
|
<head>
|
|
<title>Hydro</title>
|
|
</head>
|
|
<body>
|
|
<script type="text/javascript" src="/static/scripts.js"></script>
|
|
<div>Hydro: <a href="index.html">home</a></div>
|
|
<br>
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
{% for message in messages %}
|
|
{{ message }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
<br>
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html> |