summaryrefslogtreecommitdiff
path: root/cgi/templates/single.html.ep
diff options
context:
space:
mode:
Diffstat (limited to 'cgi/templates/single.html.ep')
-rw-r--r--cgi/templates/single.html.ep54
1 files changed, 0 insertions, 54 deletions
diff --git a/cgi/templates/single.html.ep b/cgi/templates/single.html.ep
deleted file mode 100644
index 7376eb4..0000000
--- a/cgi/templates/single.html.ep
+++ /dev/null
@@ -1,54 +0,0 @@
-% if (@{$departures}) {
-
-<div class="displaysingle">
-% my $i = 0;
-% for my $departure (@{$departures}) {
-% $i++;
-<div class="display">
-<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 behaviour="scroll" scrollamount="1" direction="left">
-%= $departure->{info}
-</marquee>
-</div>
-% }
-</div> <!-- display -->
-% }
-
-</div> <!-- displaysingle -->
-
-% }
-% else {
-
-<div class="display">
-<div class="no_data">
-Bitte Ansage beachten
-</div>
-</div>
-
-<p>
-DB-Fakedisplay displays the next departures at a DB station, just like the big
-LC display in the station itself.
-</p>
-
-% }