layout: page


{{ content }}

<section> {% for post in site.posts %}

<a class="link black-80" href="{{ post.url | relative_url }}">
  <article class="pv2">
    <h3 class="f3 fw8 lh-title mb0">{{ post.title | escape }}</h3>
    <p class="f5 fw4 lh-copy mv2">{{ post.description | remove: '<p>' | remove: '</p>' }}</p>
    <div class="f5 fw4 gray">
      {% if post.last_modified_at %}
      <span>{{ site.data.theme.text.updated }} <time>{{ post.last_modified_at | date: site.date_format }}</time></span>
      {% else %}
      <time>{{ post.date | date: site.date_format }}</time>
      {% endif %}
      <span class="ttl">&middot; {% include read_time.html %}</span>
    </div>
 </article>
</a>

{% endfor %} </section>