{% load i18n %} {% load static %} {% load unicms_contexts %} {% load unicms_templates %} {% settings_value "CMS_PUBLICATION_LIST_PREFIX_PATH" as page_news_suffix %} {% random_id as uid %} {% if publications %} {% if categories and not exclude_categories %}

{% for category in categories %} {{ category }} {% if not forloop.last %}, {% endif %} {% endfor %}

{% endif %}
{% for pub in publications %}
{% for cat in pub.publication.categories %} {{ cat.name }} {% endfor %}
{% if pub.publication.image_url %} {% endif %}
{% trans "Published" %}: {{ pub.date_start | date:"d/m/Y, H:i" }} {% include "includes/edit_news.html" with item=pub %}

{{ pub.publication.title }}

{% if not pub.publication.image_url %}

{{ pub.publication.subheading|truncatechars:135 }}

{% endif %} {% include "includes/social_share.html" with share_title=item.publication.title share_url=request.get_host|add:pub.url %}
{% endfor %}

{% trans "Go to all news" %} {% trans "Go to all news" %} {% if categories|length == 1 and not exclude_categories %} in {{ categories.0 }} {% endif %}

{% endif %}