{% extends "base.html" %} {% load i18n %} {% block title %} {{ site_title }} - {{ section_title }} {% endblock %} {% block content %}
{% include "_partials/pagination.html" %} {% for post in post_list %}
{{ post.title|default:"Undefined" }}
{{ post.author.username|default:"Undefined" }}
{{ post.created_at|default:"Undefined" }}
{% endfor %}
{% endblock %}