{% extends "minimal.html" %} {% block title %} {{site.config.name}} {% endblock title %} {% block content %}
{% if site.posts|length > 0 %}
Latest post
{% set first_post = site.posts.values()|list|first %}

{{ first_post.title }}

{{ first_post["description"] }}

{% endif %}
{% if page.paginator.index == 1 %}

Older posts

{% else %}

Older posts - page {{page.paginator.index}}

{% endif %}
{% include 'pagination.html' %}
{% include "tag_list.html" %}
{% endblock content %}