{% extends 'index.html' %} {% block title %}all posts // {{ super() }}{% endblock title %} {% block pagetitle %}all posts{% endblock pagetitle %} {% block content %}
{% include 'sidebar.html' %}

All posts

{% for article in dates %}
{% if article.author_gravatar %} {{ article.author }} {% endif %}
{{ article.date|strftime('%Y') }}

{{ article.date|strftime('%d %B') }}

{{ article.title }}

{{ article.author }} in {{ article.category }}

{% endfor %}
{% include 'footer.html' %} {% endblock %}