---
layout: default
title: Blog
generator: pagination
pagination:
max_per_page: 10
use: [posts]
---
{% block content %}
Blog
{% for post in page.pagination.items %}
-
{{ include('post/header', {
page: post,
title_tag: 'h2'
}) }}
{% include 'post/intro-image' with { page: post } %}
{% if post.excerpt %}
{{ post.excerpt|markdown }}
{% else %}
{{ post.blocks.content|split('\n\n')|first|raw }}
{% endif %}
Read more →
{% endfor %}
{% if page.pagination.previous_page or page.pagination.next_page %}
{% endif %}
{% endblock %}