mirror of
https://github.com/medialab-prado/datamad2017.git
synced 2025-06-07 22:11:29 +02:00
Random rockstar speakers view generation
This commit is contained in:
parent
4648f0dfc3
commit
5eed78d0d3
21 changed files with 951 additions and 126 deletions
|
@ -6,14 +6,15 @@
|
|||
<div class="row">
|
||||
<div class="pull-left">
|
||||
<h3>{{ site.locationBlockTitle }}</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>
|
||||
<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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue