{% extends "base.html" %} {% block content %} {{ section.content | safe }} {% for post in section.pages | sort(attribute="date") | reverse %}

{{ post.title }}

{{ post.date| date(format="%B %d, %Y") }} - {{ post.word_count }} words - {{ post.reading_time }} mins
{% if post.summary -%} {{ post.summary }} {% else %} {{ post.content | safe | striptags | truncate(length=300) }} {%- endif %} read more
{% endfor %} {% endblock content %}