{% extends widget.get_base_template %}
{% load i18n %}
{% block content %}
{% if 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 %}
{% if subtitle %}
{{ subtitle|safe|linebreaksbr }}
{% endif %}
{% else %}
{% if page.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 %}
{% if page.content_subtitle %}
{{ page.content_subtitle|safe|linebreaksbr }}
{% endif %}
{% else %}
{% 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 %}