{% extends 'base.html' %} {% load i18n %} {% load staticfiles %} {% load rstblog_extras %} {% block title %} Blog home {% 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 %} {% if forloop.counter|bitwise_and:1 == 1 %}
{% endif %} {% include "article_box.html" %} {% if forloop.counter|bitwise_and:1 == 0 %}
{% endif %} {% if forloop.last and forloop.counter|bitwise_and:1 == 1 %}
{% endif %} {% empty %}

Sorry. No articles by now.

{% endfor %} {% endblock %}