bcd6126612
* Use relative_url and absolute_url where possible Drops the `contains "://"` check, adopt Jekyll 3.7 Ref: https://github.com/mmistakes/minimal-mistakes/pull/2385#issuecomment-579882236 * One more unneeded {% assign %} * Remove one more assign as noted by mmistakes * Consolidate 4 more captures * Consolidate an extra assign on "active" class
32 lines
1.3 KiB
HTML
32 lines
1.3 KiB
HTML
{% 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="https://schema.org/CreativeWork">
|
|
{% if include.type == "grid" and teaser %}
|
|
<div class="archive__item-teaser">
|
|
<img src="{{ teaser | relative_url }}" alt="">
|
|
</div>
|
|
{% endif %}
|
|
<h2 class="archive__item-title" itemprop="headline">
|
|
{% if post.link %}
|
|
<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>
|
|
{% else %}
|
|
<a href="{{ post.url | relative_url }}" rel="permalink">{{ title }}</a>
|
|
{% endif %}
|
|
</h2>
|
|
{% if post.read_time %}
|
|
<p class="page__meta"><i class="far fa-clock" 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>
|
|
</div>
|