commit to current

This commit is contained in:
Dan
2022-12-15 23:08:33 -05:00
parent 75f2a07722
commit 62df4359e7
7 changed files with 383 additions and 380 deletions

View File

@@ -1,20 +1,20 @@
<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>
<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>