-
Notifications
You must be signed in to change notification settings - Fork 5
/
route.html
65 lines (55 loc) · 2.5 KB
/
route.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<title>Unroll</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" type="text/css" href="print.css" media="print">
</head>
<body class="w3-light-grey">
<header class="w3-container w3-junglebus">
<img src="img/Logo_Unroll.png" alt="Logo" class="w3-left w3-margin-right" style="height:80px">
<h1><a href="index.html">Unroll</a></h1>
</header>
<div class="w3-content w3-margin-top">
<div class="w3-row-padding w3-content">
<div>
<div id="error"></div>
<div id="line_title">
<p><i class="fa fa-spinner fa-spin"></i> <span data-i18n="loading route ...">loading route ...</span></p>
</div>
<div id="line_detail"></div>
<div id="line_fares"></div>
<div id="line_schedules"></div>
<div id="line_on_demand_info"></div>
<div id="line_wikipedia"></div>
<div id="line_commons"></div>
<div id="line_external_links"></div>
<div id="osmose_issues"></div>
<h3 class="w3-opacity"><b data-i18n="Trips"> Trips </b></h3>
<div id="trip_list"></div>
<h3 class="w3-opacity"><b data-i18n="Credits"> Credits </b></h3>
<div id="credits"></div>
<div class="w3-tiny"><span data-i18n="Last updated on">Last updated on</span> <span id="data_age"></span>.</div>
</div>
</div>
</div>
<footer class="w3-container w3-junglebus w3-center w3-margin-top w3-tiny">
<p>Mobility open data, proudly crafted by the OpenStreetMap community - Open source tool by <a href="https://junglebus.io" target="_blank">Jungle Bus</a></p>
<div class="w3-xlarge remove-on-print">
<a href="https://github.com/Jungle-Bus/unroll" target="_blank"><i class="fa fa-github w3-hover-opacity"></i></a>
</div>
</footer>
<script src="https://unpkg.com/[email protected]/src/transport_thumbnail.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script src="assets/osmtogeojson.js"></script>
<script src="line_data.js"></script>
<script src="assets/JungleBus_TransportHours.js"></script>
<script src="commons.js"></script>
<script src="route.js"></script>
</body>
</html>