Sha256: 06d9e241fe55bb0deca4da4b1b2e7558069b7ac8b91c756961b01b142a149e70

Contents?: true

Size: 1.47 KB

Versions: 12

Compression:

Stored size: 1.47 KB

Contents

{% 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="http://schema.org/CreativeWork">
    {% if include.type == "grid" and teaser %}
      <div class="archive__item-teaser">
        <img src=
          {% if teaser contains "://" %}
            "{{ teaser }}"
          {% else %}
            "{{ teaser | relative_url }}"
          {% endif %}
          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>

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
minimal-mistakes-jekyll-4.14.1 _includes/archive-single.html
minimal-mistakes-jekyll-4.14.0 _includes/archive-single.html
minimal-mistakes-jekyll-4.13.0 _includes/archive-single.html
minimal-mistakes-jekyll-4.12.2 _includes/archive-single.html
minimal-mistakes-jekyll-4.12.1 _includes/archive-single.html
benimal-mistakes-jekyll-0.3.0 _includes/archive-single.html
benimal-mistakes-jekyll-0.2.0 _includes/archive-single.html
benimal-mistakes-jekyll-0.0.2 _includes/archive-single.html
benimal-mistakes-jekyll-0.0.1 _includes/archive-single.html
minimal-mistakes-jekyll-4.12.0 _includes/archive-single.html
minimal-mistakes-jekyll-4.11.2 _includes/archive-single.html
minimal-mistakes-jekyll-4.11.1 _includes/archive-single.html