f15e02ea58
* add date to read-time.html * add option for show_date, dynamic icon style * change read-time to post__meta * cleanup post__metal.html * cleanup post__meta include variables * put date before read time * remove space in include variable * allow customisation of post__meta separator * add some documentation * oops fix typo derp * add post date image * change page meta separator customisation to CSS
30 lines
1.3 KiB
HTML
30 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 no_toc" 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>
|
|
{% include post__meta.html type=include.type %}
|
|
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
|
|
</article>
|
|
</div>
|