layout: default
{% if page.introduction %} <section class=“f5 fw4 lh-copy measure”>
{{ page.introduction | markdownify }}
</section> {% endif %}
{% for post in site.posts limit: site.data.theme.text.post_limit %} <a class=“link black-80” href=“{{ post.url | relative_url }}”>
<article class="pv2 measure"> <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">· {% include read_time.html %}</span> </div> </article>
</a> {% endfor %}