Files
2martens.de/_layouts/event.html
Jim Martens 38529958f0
All checks were successful
the build was successful
Fixed location markup
Signed-off-by: Jim Martens <github@2martens.de>
2018-09-30 14:22:05 +02:00

39 lines
1.3 KiB
HTML

---
layout: default
---
{% if page.date_modified %}
{% assign modified = page.date_modified %}
{% else %}
{% assign modified = page.date %}
{% endif %}
<div class="post" itemscope itemtype="http://schema.org/Event">
<header class="post-header">
<h1 class="post-title" itemprop="name about">{{ page.title }}</h1>
</header>
<ul class="list-unstyled">
<li>
<span class="far fa-map-marker"></span>
<div itemprop="location" itemscope itemtype="http://schema.org/Place">
<span itemprop="name address">{{ page.location }}</span>
</div>
</li>
<li>
<span class="far fa-calendar-alt"></span>
<time datetime="{{ page.start_date | date_to_xmlschema }}" itemprop="startDate">
{% if page.end_date %}Start: {% else %}Date: {% endif %}{{ page.start_date | date: "%b %-d, %Y %H:%M" }}
</time>
</li>
{% if page.end_date %}
<li>
<span class="far fa-calendar-alt"></span>
<time datetime="{{ page.end_date | date_to_xmlschema }}" itemprop="endDate">
End: {{ page.end_date | date: "%b %-d, %Y %H:%M" }}
</time>
</li>
{% endif %}
</ul>
<div class="text-justify" itemprop="description">{{ content }}</div>
</div>