{% extends "page.html" %} {% block content %} {{ page.content | safe }} {% set posts = get_section(path="blogposts/_index.md") %} {% for post in posts.pages %}

{{ post.title }}

{{ post.date }}

{% if post.summary %} {{ post.summary | safe }} {% else %} {{ post.content | safe }} {% endif %}
{% endfor %} {% endblock content %}