{% 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 %}for {{ year|date:"Y" }}{% endif %} {% if month %}for {{ month|date:"F Y" }}{% endif %} {% if day %}for {{ day|date:"DATE_FORMAT" }}{% endif %} {% if category %}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 %}