mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-26 12:41:23 +01:00
30 lines
No EOL
1.6 KiB
HTML
30 lines
No EOL
1.6 KiB
HTML
<!-- Begin Location Section -->
|
|
<section id="location-map" class="location-map">
|
|
<div id="canvas-map" class="canvas-map"></div>
|
|
<div class="content-wrapper">
|
|
<div class="col-lg-3 col-md-4 col-sm-6 col-md-offset-1 animated hiding location-description text-left" data-animation="fadeInLeft" data-delay="0">
|
|
<div class="row">
|
|
<div class="pull-left">
|
|
<h3>Location</h3>
|
|
<ul itemscope="" itemtype="http://schema.org/PostalAddress">
|
|
{% if site.eventLocationName %}
|
|
<li itemprop="name">{{site.eventLocationName}}</li>{% endif %}
|
|
<li itemprop="address">{{site.eventLocationAddress}}</li>
|
|
<li itemprop="email"><a href="mailto:{{site.email}}">{{site.email}}</a>
|
|
</li>
|
|
<li itemscope="" itemtype="http://schema.org/Event">
|
|
<time itemprop="startDate" datetime="{{site.eventStartTime}}">{{site.eventStartTimeHumanReadable}}</time>-
|
|
<time itemprop="endDate" datetime="{{site.eventEndTime}}">{{site.eventEndTimeHumanReadable}}</time>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<a href="{{ site.baseurl | append: '/logistics/#find-way' }}" class="pull-right">
|
|
<svg class="icon icon-direction" viewBox="0 0 32 32">
|
|
<use xlink:href="img/sprites/sprites.svg#icon-direction"></use>
|
|
</svg>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- End Location Section --> |