This repository has been archived by the owner on Jun 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
city_home.html
61 lines (59 loc) · 2.07 KB
/
city_home.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
{% extends "layout.html" %}
{% block title %}
Home
{% endblock %}
{% block main %}
<form id="homeform" action="">
<table>
<tr>
<td>From</td>
<td><input type="text" disabled="disabled" id="from" value="under construction" /> </td>
</tr>
<tr>
<td>To</td>
<td><input type="text" disabled="disabled" id="to" value="check back soon" /> </td>
</tr>
<tr>
<td colspan="2"><input type="submit" disabled="disabled" id="submit"/></td>
</tr>
</table>
</form>
<div class="links">
<h3>Important Locations</h3>
{% block ImportantLocations %}
<!-- Example
<a class="box stop" href="/chennai/stage/2083">C.M.B.T.</a><br/>
<a class="box stop" href="/chennai/stage/1921">Broadway</a> <br/>
<a class="box stop" href="/chennai/stage/1885">Central</a> <br/>
<a class="box stop" href="/chennai/stage/1884">Thiruvanmiyur</a> <br/>
<a class="box stop" href="/chennai/stage/1939">T Nagar</a> <br/>
<a class="box stop" href="/chennai/stage/2036">Egmore</a> <br/>
-->
{% endblock %}
</div>
<div class="links">
<h3>Special Routes</h3>
{% block SpecialRoutes %}
<!-- Example
<a class="box bus" href="/chennai/routes/type/AC/">AC Volvo Routes</a> <br/>
<a class="box bus" href="/chennai/routes/type/D/">Deluxe Routes</a> <br/>
<a class="box bus" href="/chennai/routes/type/X/">Express Routes</a> <br/>
<a class="box bus" href="/chennai/routes/type/LSS/">LSS Routes</a> <br/>
<a class="box bus" href="/chennai/routes/type/M/">M Routes</a> <br/>
<a class="box bus" href="/chennai/routes/type/O/">Ordinary Routes</a> <br/>
<a class="box bus" href="/chennai/routes/type/N/">24hr Night Routes </a> <br/>
-->
{% endblock %}
</div>
<div class="links">
<h3>Contribute</h3>
{% block Contribute %}
<!-- Example
<a class="box page" href="/chennai/mapped/stages">Mapped Stages</a><br/>
<a class="box page" href="/chennai/unmapped/stages">Unmapped Stages</a><br/>
<a class="box page" href="/chennai/unmapped/routes">Unmapped Routes</a><br/>
<a class="box page" href="/chennai/janitor/inconsistent/routes/4">Erroneous Routes</a><br/>
-->
{% endblock %}
</div>
{% endblock %}