{% load i18n simpleblog_tags wagtailcore_tags %} {% if post_list %}
{% if title %}

{{ title|title }}

{% endif %}
{% for post in post_list %}
{% if author %} {% nice_username post.owner %} {% endif %} {{ post.opts.verbose_name|title }} {% trans "on" %} {{ post.first_published_at|date:"d M Y" }}
{{ post.title|title }}
{% empty %}
{% trans "Recent item is empty." %}
{% endfor %}
{% endif %}