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

subscribe via RSS

{% endblock %}