diff options
author | Cassidy Dingenskirchen <admin@15318.de> | 2023-10-22 14:39:04 +0200 |
---|---|---|
committer | Cassidy Dingenskirchen <admin@15318.de> | 2023-10-22 14:39:04 +0200 |
commit | 20b791c7682a5ec319498174c40c4b301e9b4716 (patch) | |
tree | 6dd594607d9d75d88082e680ae0d4f617f3a097c /templates/departures.html.ep | |
parent | 357efdae358e8ed28c223c871802e419fcd2aa00 (diff) |
departure board: bigger station name
Diffstat (limited to 'templates/departures.html.ep')
-rw-r--r-- | templates/departures.html.ep | 8 |
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> |