--- layout: default title: Blog templateEngineOverride: liquid,md pagination: data: collections.posts size: 10 reverse: true alias: posts --- {% for post in pagination.items %} {% if post.data.published %}

{{ post.data.title }}

{{ post.date | date: "%m.%d.%Y" }} {% for tag in post.data.tags %} {% if tag != "posts" %} {% endif %} {% endfor %}

{{ post.data.post_excerpt }}

Read more →
{% endif %} {% endfor %} {% include "paginator.liquid" %}