summaryrefslogtreecommitdiff
path: root/templates/departures_page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/departures_page.html')
-rw-r--r--templates/departures_page.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/templates/departures_page.html b/templates/departures_page.html
new file mode 100644
index 0000000..52733c4
--- /dev/null
+++ b/templates/departures_page.html
@@ -0,0 +1,35 @@
+<!DOCTYPE html>
+<html lang="de">
+<head>
+ <title>{{ title }}</title>
+ {% include 'header.html' %}
+ <script src="/static/v1/js/reload.js"></script>
+</head>
+<body>
+
+{% include 'navbar.html' %}
+
+<div class="container">
+ <div class="content">
+ {% if warning %}
+ <div class="content">
+ <div class="warning">
+ <strong>{{ warning["lead"] }}</strong>
+ {{ warning["body"] }}
+ <div class="errcode">{{ warning["code"] }}</div>
+ </div>
+ </div>
+ {% endif %}
+ {% if not departures %}
+ <div class="globalnote">Keine Abfahrten innerhalb der nächsten zwei Stunden</div>
+ {% endif %}
+ <ul class="departures" id="departurelist">
+ {% include 'departure_list.html' %}
+ </ul>
+ </div>
+</div>
+
+{% include 'footer.html' %}
+
+</body>
+</html>