---
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 %}
  
    {{ post.title }}
    {% if post.blocks.excerpt %}
      {{ post.blocks.excerpt|raw }}
    {% endif %}
    Read more →
  
{% endfor %}
{% if page.pagination.previous_page or page.pagination.next_page %}
  
{% endif %}
{% endblock %}