{% extends "minimal.html" %} {% block title %} {{site.config.name}} {% endblock title %} {% block content %}
{% if site.posts|length > 0 %}
Latest post

{{ site.posts[0].title }}

{{ site.posts[0].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 %}