{% 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 %}

{% if articles|length > 0 %}
{% include "article_evidence.html" %}
{% else %}

Sorry. No articles by now.

{% endif %} {% if articles|length > 1 %} {% for article in articles|slice:"1:" %} {% 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 %} {% endfor %} {% endif %} {% endblock %}