{% extends "base.html" %} {% block title %} Posts {% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Posts

My blogg posts:

{% for entry in entries_to_render %}

{{ entry.title }}

{{ entry.author }} ({{ entry.date }})

{% endfor %} {% endblock %} {% block footer %} {{ super() }} {% endblock %}