{% extends 'base.html' %} {% load staticfiles %} {% load i18n %} {% block title %} {% trans 'Articles' %} {% endblock %} {% block head %} {% endblock head %} {% block main %}
{% for article in articles %} {% include 'articles/partial_article.html' with article=article %} {% empty %}

{% trans 'There is no published article yet' %}. {% trans 'Be the first one to publish' %}!

{% endfor %}
{% include 'paginator.html' with paginator=articles %}
{% endblock main %}