blob: 4c0ae08730fa6090303b1d73aefd7054350c45eb (
plain)
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
|
{% extends 'page.html' %}
{% load static %}
{% block breadcrumbs %}
<li><a href="{% url 'website:venue'%}">The Venue</a></li>
<li class="current"><a href="#">Reaching the Venue</a></li>
<li><a href="{% url 'website:contact'%}">Contact Us</a></li>
{% endblock %}
<style type="text/css">
div {visibility:hidden;
</style>
{% block content %}
<h4>Quick guide to reach IIT Bombay campus</h4>
<p style="font-size: .9em;">
- Powai is an eastern suburb in North-Eastern part of Mumbai. <br>
- Here is how you can reach IIT Bombay from various important stations.
</p>
<div id="reach-scipy" class="row">
<ul class="side-nav large-4 columns">
<li class="active"><a id="airport" href="#">From Airport</a></li>
<li><a id="dadar" href="#">From Dadar Station</a></li>
<li><a id="thane" href="#">From Thane Station</a></li>
<li><a id="bandra" href="#">From Bandra Terminus</a></li>
<li><a id="tilak" href="#">From Lokmanya Tilak Terminus</a></li>
<li><a id="central" href="#">From Mumbai Central</a></li>
<li><a id="shivaji" href="#">From Chatrapati Shivaji Terminus</a></li>
<li id="fare">
<h6>Transit Details: <span id="from">From Airport</span></h6>
<p id="description">
Convenient way to reach IITB from airport is to BEST buses running on route no. 382 or 409.
Alternatively you may take an auto directly to IIT which would cost you around 90 rs.
(depending on traffic) or a taxi which would cost around 100 Rs.
</p>
</li>
</ul>
<div id="map" class="large-8 columns">
<img id="map-loader" src="{% static 'img/map-loader.gif' %}">
<div id="mappy">
<iframe width="100%" height="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://www.google.co.in/maps?f=d&source=s_d&saddr=Chhatrapati+Shivaji+International+Airport,+Andheri+East,+Mumbai,+Maharashtra&daddr=IIT+Main+Gate&hl=en&geocode=FQFLIwEdg-NXBCGuqHTEYBrMHilHKb2ZUMjnOzGuqHTEYBrMHg%3BFRrUIwEdep5YBCldyp4n8sfnOzFZy8ueURQugA&aq=4&oq=IIT&sll=19.099667,72.883154&sspn=0.094407,0.154324&mra=pd&ie=UTF8&t=m&ll=19.110379,72.895527&spn=0.029763,0.042183&output=embed">
</iframe>
</div>
</div> <!-- /map -->
</div> <!--/row -->
{% endblock %}
|