2016-10-30 01:02:14 +02:00
|
|
|
{% if post.header.teaser %}
|
|
|
|
{% capture teaser %}{{ post.header.teaser }}{% endcapture %}
|
|
|
|
{% else %}
|
|
|
|
{% assign teaser = site.teaser %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if post.id %}
|
|
|
|
{% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %}
|
|
|
|
{% else %}
|
|
|
|
{% assign title = post.title %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="{{ include.type | default: "list" }}__item">
|
|
|
|
<article class="archive__item" itemscope itemtype="http://schema.org/CreativeWork">
|
|
|
|
{% if include.type == "grid" and teaser %}
|
|
|
|
<div class="archive__item-teaser">
|
|
|
|
<img src=
|
|
|
|
{% if teaser contains "://" %}
|
|
|
|
"{{ teaser }}"
|
|
|
|
{% else %}
|
2016-11-23 02:29:35 +01:00
|
|
|
"{{ teaser | absolute_url }}"
|
2016-10-30 01:02:14 +02:00
|
|
|
{% endif %}
|
|
|
|
alt="">
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<h2 class="archive__item-title" itemprop="headline">
|
|
|
|
{% if post.link %}
|
2016-11-23 02:29:35 +01:00
|
|
|
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | absolute_url }}" rel="permalink"><i class="fa fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
|
2016-10-30 01:02:14 +02:00
|
|
|
{% else %}
|
2016-11-23 02:29:35 +01:00
|
|
|
<a href="{{ post.url | absolute_url }}" rel="permalink">{{ title }}</a>
|
2016-10-30 01:02:14 +02:00
|
|
|
{% endif %}
|
|
|
|
</h2>
|
|
|
|
{% if post.read_time %}
|
|
|
|
<p class="page__meta"><i class="fa fa-clock-o" aria-hidden="true"></i> {% include read-time.html %}</p>
|
|
|
|
{% endif %}
|
|
|
|
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
|
|
|
|
</article>
|
2016-11-23 02:29:35 +01:00
|
|
|
</div>
|