blob: 9f4c7718437afe3033363b582aee469cc7171b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<div class="row">
<div class="col s12">
% if (@{$station_coordinates}) {
Zugfahrten zwischen <%= $range_from->strftime('%d.%m.%Y') %> und <%= $range_to->strftime('%d.%m.%Y') %>
% }
% else {
Keine Zugfahrten gefunden.
% }
</div>
</div>
%= include '_map', station_coordinates => $station_coordinates, station_pairs => $station_pairs
|