{% block content %}

{{ gettext('Last Articles') }}

{% for article in articles %} {% if loop.index > PAGE_PAGINATION %}{% break %}{% endif %}

{{ article.title }}

{% if SHOW_FULL_ARTICLE %} {{ article.content }} {% else %}

{% if article.has_summary %} {{ article.summary }} {% elif article.summary %} {{ article.summary|striptags|truncate(140) }} {% endif %}

{% endif %}

{{ gettext('Posted by') }} {% for author in article.authors %} {{ author }} {% endfor %} {{ gettext('on') }} {{ article.locale_date }}
{{ gettext('Category:') }} {{ article.category }}

{% include 'comments.html' %}
{% endfor %} {% endblock content %}