summaryrefslogtreecommitdiff
path: root/templates/stops.html
blob: 3889b7e65d66f697528e35f6954d8a40b748fbf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html lang="de">
<head>
	<title>{{ title }}</title>
	{% include 'header.html' %}
</head>
<body>
<div class="container">
	<div class="content">
		<ul class="stops">
			{% for stop in stops %}
				<li>
					<a class="name" href="/board/{{ stop['id'] }}">{{ stop['name'] }}</a>
				</li>
			{% endfor %}
		</ul>
	</div>
</div>
</body>
</html>