You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
405 B
16 lines
405 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv='refresh' content='20' >
|
|
<title>Weather App</title>
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='sun.ico') }}">
|
|
</head>
|
|
<body>
|
|
<H3>Server is up and ready to receive</H3>
|
|
|
|
{% for i in range ( data|length ) %}
|
|
<b> {{ data[i] }} <br></b>
|
|
{% endfor %}
|
|
|
|
</body>
|
|
</html>
|