{% extends "glue/base.html" %}
{% load i18n %}
{% block breadcrumbs %}{% endblock %}
{% block main_content %}
{% trans "last published items" %}
{% for item in last_items %}
- {{ item.title }} - {% blocktrans with timesince=item.publication_date|timesince %}{{ timesince }} ago {% endblocktrans %}
({{ item.root.title }})
{% endfor %}
{% endblock %}