2014-07-28 21:27:01 +02:00
|
|
|
<!-- Begin Find Way-->
|
2014-08-08 00:23:36 +02:00
|
|
|
<section id="find-way" class="find-way">
|
|
|
|
<div id="canvas-map" class="canvas-map"></div>
|
2014-07-28 21:27:01 +02:00
|
|
|
<div class="content-wrapper text-left">
|
2014-08-17 23:31:26 +02:00
|
|
|
<h3 class="animated hiding" data-animation="fadeInUp" data-delay="0">{{ site.findWayTitle }}</h3>
|
2014-07-28 21:27:01 +02:00
|
|
|
<div class="map-card col-lg-3 col-md-4 col-sm-6 col-xs-12">
|
|
|
|
<div class="map-search">
|
|
|
|
<input type="text" id="location-input" class="location-input" name="location-input" data-input-value="Your location" placeholder="Your location" autocomplete="off">
|
|
|
|
<svg id="direction-locate" class="icon icon-geolocation" viewBox="0 0 30 32">
|
|
|
|
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-geolocation"></use>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
<div class="location-result">
|
2014-08-08 00:23:36 +02:00
|
|
|
<span id="result-name" class="result-name"></span>
|
2014-07-28 21:27:01 +02:00
|
|
|
<span>to DevFest</span>
|
|
|
|
<svg id="direction-cancel" class="icon icon-cross" viewBox="0 0 30 32">
|
|
|
|
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-cross"></use>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="map-card location-details col-lg-3 col-md-4 col-sm-6 col-xs-12">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<svg class="icon icon-flag" viewBox="0 0 30 32">
|
|
|
|
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-flag"></use>
|
|
|
|
</svg>
|
2014-08-31 20:52:35 +02:00
|
|
|
<span>{{ site.findWayDistance }}</span>
|
2014-08-08 00:23:36 +02:00
|
|
|
<span id="distance" class="detailed-result pull-right"></span>
|
2014-07-28 21:27:01 +02:00
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<div id="mode">
|
|
|
|
<svg id="mode-icon" class="icon icon-mode" viewBox="0 0 30 32">
|
|
|
|
<use xlink:href="{{ site.baseurl }}/img/sprites/sprites.svg#icon-flight"></use>
|
|
|
|
</svg>
|
|
|
|
<select id="mode-select">
|
2014-08-31 20:52:35 +02:00
|
|
|
<option value="DRIVING">{{ site.findWayDriving }}</option>
|
|
|
|
<option value="WALKING">{{ site.findWayWalking }}</option>
|
|
|
|
<option value="BICYCLING">{{ site.findWayBicycling }}</option>
|
|
|
|
<option value="TRANSIT">{{ site.findWayTransit }}</option>
|
2014-07-28 21:27:01 +02:00
|
|
|
</select>
|
2014-08-08 00:23:36 +02:00
|
|
|
<span id="estimateTime" class="detailed-result pull-right"></span>
|
2014-07-28 21:27:01 +02:00
|
|
|
</div>
|
2014-08-31 20:52:35 +02:00
|
|
|
<a id="find-flight" href="https://google.com/flights" class="pull-right hidden" target="_blank">{{ site.findWayFindFlight }}</a>
|
2014-07-28 21:27:01 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
2014-09-29 17:25:11 +02:00
|
|
|
<div class="clearfix"></div>
|
2014-08-31 20:52:35 +02:00
|
|
|
<a href="http://maps.google.com/maps?ll={{ site.eventPlaceCoordinates | replace:' ',''}}&z=17&t=m&hl=en-US&gl=US&mapclient=embed&q={{ site.eventStreetAddress | replace:' ','%20' | replace:',','%2C'}}%2C%20{{ site.eventAddressLocality | replace:' ','%20' | replace:',','%2C'}}" class="view-on-map" target="_blank">{{ site.viewOnMap }}</a>
|
2014-07-28 21:27:01 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
<!-- End Find Way -->
|