mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2024-12-26 20:51:22 +01:00
25 lines
No EOL
1.4 KiB
HTML
25 lines
No EOL
1.4 KiB
HTML
<!-- Begin Location Section -->
|
|
<section id="location-map" class="location-map" style="background-image: url({{ site.baseurl }}/img/sections-background/{{ site.locationBlockImage }});background-repeat: no-repeat;background-size: cover;">
|
|
<div id="canvas-map-osm" class="canvas-map-osm"></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>{{ site.locationBlockTitle }}</h3>
|
|
<ul>
|
|
{% if site.eventLocationName %}<li>{{ site.eventLocationName }}</li>{% endif %}
|
|
<li>{{ site.eventStreetAddress }}, {{ site.eventAddressLocality }}</li>
|
|
<li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
|
|
<li>
|
|
{% assign startTime = site.eventStartTime | split: "T" %}
|
|
<time>{{ startTime[1] }}</time> -
|
|
{% assign endTime = site.eventEndTime | split: "T" %}
|
|
<time>{{ endTime[1] }}</time>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- End Location Section --> |