---
layout: default
title: Blog
generator: pagination
pagination:
max_per_page: 5
use:
- posts
---
{% block body_classes %}page--blog page--blog__list{% endblock %}
{% block content %}
Blog
{% for post in page.pagination.items %}
{% include 'post-header' with { page: post, title_tag: 'h2' } %}
{% if post.blocks.excerpt %}
{{ post.blocks.excerpt|raw }}
{% else %}
{{ post.blocks.content|raw|split(' ')|slice(0,50)|join(' ')|raw }} …
{% endif %}
Read more →
{% endfor %}
{% if page.pagination.previous_page or page.pagination.next_page %}
{% endif %}
{% endblock %}