Sha256: 00bbe37c6a726d7a6b21c747ba5e5e44e3df81a17ed551477f0bff0ee291f77a

Contents?: true

Size: 1.47 KB

Versions: 1

Compression:

Stored size: 1.47 KB

Contents

---
layout: default
---

<article class="flex justify-center mt3">

  <div class="mw7 w-100 pa3 pa4-m">
    <h3 class="f5 f4-ns fw3 mb0 pb2 bb b--light-gray">{{ site.data.theme.text.latest_articles | capitalize | default: "Latest writings" }}</h3>
    
    {% for post in site.posts limit: site.data.theme.text.post_limit %}
    <div class="post pv4 bb b--light-gray">
      <div class="f5 fw3 light-silver lh-copy">
        {% if post.last_modified_at %}
        <span>{{ site.data.theme.text.updated }} {{ post.last_modified_at | date: site.date_format }}</span>
        {% else %}
        <span>{{ post.date | date: site.date_format }}</span>
        {% endif %}
        <span class="ttl">&middot;
        {% include read_time.html %}
        </span>
      </div>

      <a class="link black" href="{{ post.url | relative_url }}">
        <h3 class="f3 f2-ns fw6 lh-title mt0 mb0">{{ post.title | escape }}</h3>
        <div class="f5 f4-ns fw3 lh-copy">
          {% if post.summary %}
            {{ post.summary }}
          {% else %}
            {{ post.excerpt }}
          {% endif %}
        </div>
      </a>
      <a class="f6 fw3 link light-silver lh-copy mb0" href="{{ post.url | relative_url }}">{{ site.data.theme.text.read_more | capitalize }}</a>
    </div>
    {% endfor %}

    <p class="f5 f4-ns fw3 mb0 mt4"><a class="link black" href="{{ site.data.theme.text.full_archive_url | relative_url }}">{{ site.data.theme.text.full_archive | capitalize }}</a></p>
  </div>

</article>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
minimal-jekyll-theme-0.1.3 _layouts/home.html