summaryrefslogtreecommitdiff
path: root/templates/_transit_fyi.html.ep
diff options
context:
space:
mode:
Diffstat (limited to 'templates/_transit_fyi.html.ep')
-rw-r--r--templates/_transit_fyi.html.ep22
1 files changed, 0 insertions, 22 deletions
diff --git a/templates/_transit_fyi.html.ep b/templates/_transit_fyi.html.ep
deleted file mode 100644
index 5951e7d..0000000
--- a/templates/_transit_fyi.html.ep
+++ /dev/null
@@ -1,22 +0,0 @@
-<table class="striped"><tbody>
- % for my $res (@{$transit_fyi}) {
- % my ($info, $via, $via_arr) = @{$res};
- % $via_arr = $via_arr ? $via_arr->strftime('%H:%M') : q{};
- <tr>
- <td>
- %= $info->{line}
- </td>
- <td>
- %= $via
- </td>
- <td>
- %= $info->{departure}->strftime('%H:%M')
- →
- %= $via_arr
- % if ($info->{departure_delay}) {
- %= sprintf('(%+d)', $info->{departure_delay})
- % }
- </td>
- </tr>
- % }
-</tbody></table>