{% extends "default.html" %} {% block body_class %}archive-template{% endblock %} {% block body %} {# The big featured header #} {% if site.logo %} {% endif %} {# Contact #} {{ site.title }} {{ site.description }} {% if site.links %} {% for link in site.links %} {{link.title}} {% endfor %} {% endif %} {% if author.socials %} {% for social in author.socials %} {% if social.icon %} {{social.name}} {% else %} {{social.name}} {% endif %} {% endfor %} {% endif %} Scroll Down {# The main content area on the homepage #} {% for posts in years %} {{posts[0].date.year}} {% for post in posts %} {{post.title}} {{ post.date|strftime('%d %b %Y') }} {% endfor %} {% endfor %} {% endblock %}