blob: 2a06690afbd9a50f182fa5e09e5a01f8824b81f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!doctype html>
<title>Weather</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
<div class=page>
<h1>Weather</h1>
<div class=metanav>
</div>
{% for message in get_flashed_messages() %}
<div class=flash>{{ message }}</div>
{% endfor %}
{% block body %}{% endblock %}
</div>
|