2016-03-18 20:07:02 +01:00
|
|
|
{% if post.header.teaser %}
|
|
|
|
{% capture teaser %}{{ post.header.teaser }}{% endcapture %}
|
|
|
|
{% else %}
|
2016-08-01 16:27:54 +02:00
|
|
|
{% assign teaser = site.teaser %}
|
2016-03-18 20:07:02 +01:00
|
|
|
{% endif %}
|
|
|
|
|
2016-07-11 19:02:59 +02:00
|
|
|
{% if post.id %}
|
|
|
|
{% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %}
|
|
|
|
{% else %}
|
|
|
|
{% assign title = post.title %}
|
|
|
|
{% endif %}
|
|
|
|
|
2020-08-04 18:59:44 +02:00
|
|
|
<div class="{{ include.type | default: 'list' }}__item">
|
2018-11-27 15:07:51 +01:00
|
|
|
<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
|
2016-08-01 16:27:54 +02:00
|
|
|
{% if include.type == "grid" and teaser %}
|
2016-07-11 19:02:59 +02:00
|
|
|
<div class="archive__item-teaser">
|
2020-03-06 21:37:07 +01:00
|
|
|
<img src="{{ teaser | relative_url }}" alt="">
|
2016-07-11 19:02:59 +02:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2020-07-22 21:26:14 +02:00
|
|
|
<h2 class="archive__item-title no_toc" itemprop="headline">
|
2016-07-11 19:02:59 +02:00
|
|
|
{% if post.link %}
|
2018-03-20 16:35:36 +01:00
|
|
|
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | relative_url }}" rel="permalink"><i class="fas fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
|
2016-07-11 19:02:59 +02:00
|
|
|
{% else %}
|
2018-03-20 16:35:36 +01:00
|
|
|
<a href="{{ post.url | relative_url }}" rel="permalink">{{ title }}</a>
|
2016-04-07 22:25:50 +02:00
|
|
|
{% endif %}
|
2016-07-11 19:02:59 +02:00
|
|
|
</h2>
|
2020-08-31 02:52:12 +02:00
|
|
|
{% include page__meta.html type=include.type %}
|
2016-07-11 19:02:59 +02:00
|
|
|
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
|
|
|
|
</article>
|
2018-11-27 15:07:51 +01:00
|
|
|
</div>
|