summaryrefslogtreecommitdiff
path: root/cgi/templates/display.html.ep
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2014-08-20 18:49:36 +0200
committerDaniel Friesel <derf@finalrewind.org>2014-08-20 18:49:36 +0200
commit5bca4819dd35226886e85adf6e6c3cebdf1fb00a (patch)
treeeeddde4349108f84c8fa252e467da91c8bf3257c /cgi/templates/display.html.ep
parent9d09737ac16b1f3715c38f57830b41a3269d85d9 (diff)
move application from cgi directory to project root
Diffstat (limited to 'cgi/templates/display.html.ep')
-rw-r--r--cgi/templates/display.html.ep23
1 files changed, 0 insertions, 23 deletions
diff --git a/cgi/templates/display.html.ep b/cgi/templates/display.html.ep
deleted file mode 100644
index e65fdc9..0000000
--- a/cgi/templates/display.html.ep
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <title><%= $title %></title>
- <meta charset="utf-8">
- %= stylesheet '/display.css'
- %= javascript '/jquery-2.1.1.min.js'
-</head>
-<body style="color: #<%= join(q{}, map { sprintf('%02x', $_) } @{$color} ) %>;
- font-size: <%= $scale * 100 %>%;">
-
-<div class="outer">
-% for my $d (@{$departures}) {
-<div class="row">
-<div class="line"> <%= $d->[0] %> </div>
-<div class="dest"> <%= $d->[1] %> </div>
-<div class="time"> <%= $d->[2] %> </div>
-</div> <!-- row -->
-% }
-</div> <!-- outer -->
-
-</body>
-</html>