diff options
author | Daniel Friesel <derf@finalrewind.org> | 2014-08-20 18:49:06 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2014-08-20 18:49:06 +0200 |
commit | 8dfc0c027758929345f428c3a24f1b9221f9c81e (patch) | |
tree | afff867c9f544743b3b613e7c0e66a9b20c10126 /cgi/templates/multi.html.ep | |
parent | fd26aad769b97b432c254f251b7037d9a3c7db61 (diff) |
move application from cgi directory to the project root
Diffstat (limited to 'cgi/templates/multi.html.ep')
-rw-r--r-- | cgi/templates/multi.html.ep | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/cgi/templates/multi.html.ep b/cgi/templates/multi.html.ep deleted file mode 100644 index 26f3433..0000000 --- a/cgi/templates/multi.html.ep +++ /dev/null @@ -1,56 +0,0 @@ -% if (@{$departures}) { - -<div class="displaymulti"> -% my $i = 0; -% for my $departure (@{$departures}) { -% $i++; - -<div class="display <% if (($i % 2) == 0) { %> separator<% } %>"> -<div class="platform"> -%= $departure->{platform} -</div> - -<div class="time"> -%= $departure->{time} -</div> - -<div class="train"> -%= $departure->{train} -</div> - -<div class="via"> -% my $via_max = @{$departure->{via}}; -% my $via_cur = 0; -% for my $stop (@{$departure->{via}}) { -% $via_cur++; -<span><%= $stop %><% if ($via_cur < $via_max) { %> - <% } %></span> -% } -</div> - -<div class="destination"> -%= $departure->{destination} -</div> - -% if ($departure->{info}) { -<div class="info"> -<marquee behavior="scroll" scrollamount="1" direction="left"> -%= $departure->{info} -</marquee> -</div> -% } - -</div> <!-- display --> - -% } - -</div> <!-- displaymulti --> - -% } -% else { - -<p> -DB-Fakedisplay displays the next departures at a DB station, just like the big -LC display in the station itself. -</p> - -% } |