26 lines
643 B
HTML
26 lines
643 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible"
|
|
content="ie=edge">
|
|
<title>Погода</title>
|
|
<link rel="stylesheet"
|
|
href="/static/style.css?v=1">
|
|
<link rel="icon"
|
|
href="/static/favicon.ico"
|
|
type="image/x-icon">
|
|
</head>
|
|
|
|
<body class="app-container">
|
|
<ul>
|
|
{% for location in locations %}
|
|
<li><a href="weather/{{location.name}}-{{location.location_id}}">{{location.name}}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
|
|
</html> |