{% import 'components/avatar.html' as avatar with context %} {% block body %}

{{ target_jid }}

{% if not blog_items or not blog_items['items'] %}
{% trans %}There is not message yet in this forum.{% endtrans %} {% if profile %} {% trans %}You can start a topic of interest by filling the form below.{% endtrans %} {% else %} {% trans %}You can login to create a new topic.{% endtrans %} {% endif %}
{% else %}
{% for item in blog_items['items'] %} {% if "http_url" in item %} {% endif %}
{{ avatar.avatar(item['author_jid']) }}

{{ item.title | truncate(65) }}

{{ item.author }} {{ item.published | date_fmt('short') }} {% if item.nb_items is defined %} {{ item.nb_items }} {% endif %}

{% if item.published != item.updated %}
{{ _('Updated') }} {{ item.updated | date_fmt('relative') }}
{% endif %}
{% if "http_url" in item %}
{% endif %} {% endfor %}
{% endif %} {% endblock body %}