{% extends "_base.html" %} {% block title %}{{ site.title }}{% endblock %} {% block content %}
{% for post in site.pages | sort(attribute="date") | reverse %} {% if post.type == "post" %}

{{ post.title }}

{{ post.display_date or post.date }}
{% if post.description %}

{{ post.description }}

{% endif %}
{% endif %} {% endfor %}
{% endblock %}