{% extends "base.html" %} {% block content %} {% if articles_paginator.num_pages > 0 %} {% endif %} {% block pre_articles %} {% endblock %} {% for post in articles_page.object_list %}

{{ post.title }}

{{ post.date | date_to_string }} {% for c in post.tags %} {{ c }} {% endfor %}
{{ post.summary }}
Read more... {% endfor %} {% if articles_paginator.num_pages > 0 %} {% endif %} {% endblock %}