summaryrefslogtreecommitdiff
path: root/templates/stops.html
blob: b762958adc3d2a7287edae37e0331ff2c47aab55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!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 href="/board/{{ stop['id'] }}">{{ stop['name'] }}</a></li>
			{% endfor %}
		</ul>
	</div>
</div>
</body>
</html>