diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/header.html | 2 | ||||
-rw-r--r-- | templates/stops.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/header.html b/templates/header.html index 5d62fda..b7260a5 100644 --- a/templates/header.html +++ b/templates/header.html @@ -10,4 +10,4 @@ <link rel="apple-touch-icon" sizes="180x180" href="/static/icons/icon-180x180.png"> <link rel="apple-touch-icon" sizes="152x152" href="/static/icons/icon-152x152.png"> <link rel="apple-touch-icon" sizes="167x167" href="/static/icons/icon-167x167.png"> -<link href="/static/v0/css/wip.css" id="theme" rel="stylesheet"> +<link href="/static/v0/css/light.min.css" id="theme" rel="stylesheet"> diff --git a/templates/stops.html b/templates/stops.html index 2cbac8e..b762958 100644 --- a/templates/stops.html +++ b/templates/stops.html @@ -7,7 +7,7 @@ <body> <div class="container"> <div class="content"> - <ul> + <ul class="stops"> {% for stop in stops %} <li><a href="/board/{{ stop['id'] }}">{{ stop['name'] }}</a></li> {% endfor %} |