{%- if items %}
{%- for item in items %}
{{ item.title|e }}

{% trans author = '%s' % (item.author_url|e, item.author|e), domain = item.domain|e, submitted = item.created|datetimeformat('short'), comments = '%s' % ( item.comment_url, ngettext('%d comment', '%d comments', item.comments) % item.comments) %}from {{ domain }}, submitted by {{ author }} @ {{ submitted }}, {{ comments }}{% endtrans %}

{%- endfor %}
{%- else %} {{ _('No items on the frontpage') }} {%- endif %}