{% extends "base.html" %} {% block title %}{{ site_title | default(value="Blog") }}{% endblock title %} {% block description %}{{ site_description | default(value="") }}{% endblock description %} {% block main_class %}index{% endblock main_class %} {% block main %}

{{ site_title | default(value="Blog") }}

{% if site_description %}

{{ site_description }}

{% endif %}
{% if posts and posts | length > 0 %} {% endif %} {% if posts and posts | length > 1 %}
{% for post in posts %} {% if not loop.first %}
{{ post.title | default(value="Untitled") }}
{% if post.date %} {% endif %} {% if post.tags %} {% for tag in post.tags %}{{ tag }}{% endfor %} {% endif %}
{% endif %} {% endfor %}
{% endif %} {% endblock main %}