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