---
title: All posts
layout: default
pagination:
  data: collections.posts
  size: 8
  reverse: true
  alias: posts
---
<div class="posts-wrapper">
  {% for post in pagination.items %}
  <article class="h-entry">
    <div class="flex-centered gap-xs icon-small icon-light">
      {% tablericon "calendar-month" "Date" %}
      <time class="dt-published" datetime="{{ post.date }}">
        {{ post.date | date: "%B %e, %Y" }}
      </time>
    </div>
    <a href="{{ post.url }}">
      <h3 class="flex-centered">{{ post.data.title }}</h3>
    </a>
    <span class="p-author h-card hidden">{{ meta.siteName }}</span>
    <div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
    {{ post.data.post_excerpt | markdown }}
  </article>
  {% endfor %}
</div>
{% render "partials/widgets/paginator.liquid", pagination:pagination %}