Most of texts are now in _config.yml, Knowledge Graph support

This commit is contained in:
Oleh Zasadnyy 2014-08-18 00:31:26 +03:00
parent c0f7dc3215
commit 4648f0dfc3
250 changed files with 1700 additions and 856 deletions

View file

@ -5,16 +5,15 @@
<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>
<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>
{% 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>
<time itemprop="startDate" datetime="{{ site.eventStartTime }}">{{ site.eventStartTimeHumanReadable }}</time>-
<time itemprop="endDate" datetime="{{ site.eventEndTime }}">{{ site.eventEndTimeHumanReadable }}</time>
</li>
</ul>
</div>