2016-03-18 20:07:02 +01:00
{% if post.header.teaser %}
{% capture teaser %}{{ post.header.teaser }}{% endcapture %}
{% else %}
{% capture teaser %}{{ site.teaser }}{% endcapture %}
{% endif %}
2016-03-20 01:58:17 +01:00
< div class = "{{ include.type | default: " list " } } __item " >
{% if post.link %}
< a href = "{{ post.link }}" target = "_blank" >
{% else %}
< a href = "{{ base_path }}{{ post.url }}" >
{% endif %}
2016-03-18 20:07:02 +01:00
< article class = "archive__item" itemscope itemtype = "http://schema.org/CreativeWork" >
2016-03-20 01:58:17 +01:00
{% if include.type == "grid" %}
< div class = "archive__item-teaser" >
< img src =
{% if teaser contains "http" %}
"{{ teaser }}"
{% else %}
"{{ teaser | prepend: "/images/" | prepend: base_path }}"
{% endif %}
2016-03-23 21:32:50 +01:00
alt="">
2016-03-20 01:58:17 +01:00
< / div >
2016-03-23 21:32:50 +01:00
{% endif %}
2016-03-23 17:56:23 +01:00
< h2 class = "archive__item-title" itemprop = "headline" > {% if post.id %}{{ post.title | markdownify | remove: "< p > " | remove: "< / p > " }}{% else %}{{ post.title }}{% endif %}{% if post.link %}< i class = "fa fa-star" aria-hidden = "true" > < / i > {% endif %}< / h2 >
2016-03-23 03:28:12 +01:00
{% if site.read_time and post.read_time %}< p class = "page__meta" > < i class = "fa fa-clock-o" aria-hidden = "true" > < / i > {% include read-time.html %}< / p > {% endif %}
2016-03-18 20:07:02 +01:00
{% if post.excerpt %}< p class = "archive__item-excerpt" itemprop = "description" > {{ post.excerpt | markdownify | strip_html | truncate: 160 }}< / p > {% endif %}
< / article >
< / a >
< / div >