{% extends feincms_page.template.path|default:"base.html" %} {% load feincms_tags i18n %} {% block title %}{% trans "News" %} - {{ block.super }}{% endblock %} {% block content %} {% block content_title %}

News {% if year %}{% trans "for" %} {{ year|date:"Y"|default:year }}{% endif %} {% if month %}{% trans "for" %} {{ month|date:"F Y"|default:month }}{% endif %} {% if day %}{% trans "for" %} {{ day|date:"DATE_FORMAT"|default:day }}{% endif %} {% if category %}{% trans "for" %} {{ category }}{% endif %}

{% endblock %} {% block object_list %}
{% for entry in object_list %}

{{ entry }}

{% if entry.first_image %}{{ entry.first_image.render }}{% endif %} {% if entry.first_richtext %}{{ entry.first_richtext.render }}{% endif %}
{% endfor %}
{% endblock %} {% block pagination %} {% endblock %} {% endblock %}