diff options
-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> |