{% 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 %} {% for post in posts %} {% if loop.first %} Featured {{ post.title | default(value="Untitled") }} {% if post.date %} {{ post.date | date(format="%B %d, %Y") }} {% endif %} {% if post.tags %} {% for tag in post.tags %}{{ tag }}{% endfor %} {% endif %} {% endif %} {% endfor %} {% endif %} {% if posts and posts | length > 1 %} {% for post in posts %} {% if not loop.first %} {{ post.title | default(value="Untitled") }} {% if post.date %} {{ post.date | date(format="%b %d, %Y") }} {% endif %} {% if post.tags %} {% for tag in post.tags %}{{ tag }}{% endfor %} {% endif %} {% endif %} {% endfor %} {% endif %} {% endblock main %}
{{ site_description }}