summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCassidy Dingenskirchen <admin@15318.de>2023-10-22 14:39:04 +0200
committerCassidy Dingenskirchen <admin@15318.de>2023-10-22 14:39:04 +0200
commit20b791c7682a5ec319498174c40c4b301e9b4716 (patch)
tree6dd594607d9d75d88082e680ae0d4f617f3a097c
parent357efdae358e8ed28c223c871802e419fcd2aa00 (diff)
departure board: bigger station name
-rw-r--r--templates/departures.html.ep8
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/departures.html.ep b/templates/departures.html.ep
index 021e9ca..c08e986 100644
--- a/templates/departures.html.ep
+++ b/templates/departures.html.ep
@@ -1,9 +1,9 @@
<div class="row">
- <div class="col s12 center-align">
- <i class="tiny material-icons "><%= param('hafas') ? 'directions' : 'train' %></i>
- <b><%= $station %></b>
+ <div class="col s12">
+ <h2><i class="material-icons "><%= param('hafas') ? 'directions' : 'train' %></i>
+ <%= $station %></h2>
% for my $related_station (sort { $a->{name} cmp $b->{name} } @{$related_stations}) {
- <br/>+ <%= $related_station->{name} %>
+ + <%= $related_station->{name} %> <br/>
% }
</div>
</div>