--- title: All posts layout: default pagination: data: collections.posts size: 8 reverse: true alias: posts permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html" ---
{% for post in pagination.items %}
{% tablericon "calendar-month" "Date" %}

{{ post.data.title }}

{{ post.data.post_excerpt | markdown }}
{% endfor %}
{% render "partials/widgets/paginator.liquid", pagination:pagination %}