{% extends widget.parent.theme.template %} {% load feincms_tags i18n %} {% block body_main %} {% block content_title %}

{% trans 'Blog posts' %} {% 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 %}