summaryrefslogtreecommitdiff
path: root/templates/stops.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/stops.html')
-rw-r--r--templates/stops.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/stops.html b/templates/stops.html
index b762958..3889b7e 100644
--- a/templates/stops.html
+++ b/templates/stops.html
@@ -9,7 +9,9 @@
<div class="content">
<ul class="stops">
{% for stop in stops %}
- <li><a href="/board/{{ stop['id'] }}">{{ stop['name'] }}</a></li>
+ <li>
+ <a class="name" href="/board/{{ stop['id'] }}">{{ stop['name'] }}</a>
+ </li>
{% endfor %}
</ul>
</div>