{% extends 'base.html' %} {% load i18n %} {% load staticfiles %} {% load rstblog_extras %} {% block title %} Index about {% if not category %} all categories {% else %} {{category}} category {% endif %} {% endblock %} {% block meta %} {% endblock %} {% block stylesheet %} {% endblock %} {% block link %} {% endblock %} {% block content %}

Indexing {{ articles|length }} {% if home %}newer {% endif %}{{ atype }}{{ articles|length|pluralize }} about {% if not category %} all categories {% else %} {{category}} category {% endif %}

{% for article in articles %}
{{ article.title }}
{% if article.image != None %}
{% with "/media/images/"|add:article.image as img %} {% endwith %}
{% endif %}
{% if article.summary %}

{{ article.summary }}

{% endif %}
{% empty %}

Sorry. No articles by now.

{% endfor %}
{% endblock %}