{% extends "base.html" %} {% load i18n pagination_tags %} {% block title%}{% trans "News" %}{% endblock %} {% block content %}

{% trans "News" %}

{% if articles%}
{% for article in page.object_list %}
{% if article.image%} {% endif %}

{{article.title}}

{{article.published}}  ¦  {{article.tags}}

{{article.summary|safe}}

{% trans 'Read more...' %}

 
{% endfor %}

{% trans 'Result' %}: {{page.paginator.count}} | {% trans 'Pages' %}: {% for num in page.page_range %} {% if not num %} ... {# literally dots #} {% else %} {% ifequal page.number num %} {{num}} {% else %} {{num}} {% endifequal %} {% endif %} {% endfor %}

{% endif %} {% endblock %} {% block menu%} {% endblock %}