{% load i18n %} {% load static %} {% load unicms_contexts %} {% load unicms_templates %} {% settings_value "CMS_PUBLICATION_LIST_PREFIX_PATH" as page_news_suffix %} {% if publications %}
{% for item in publications %}
{% for cat in item.publication.categories %} {{ cat.name }} {% endfor %}
{% if item.publication.image_url %} {% endif %}
{% trans "Published" %}: {{ item.date_start | date:"d/m/Y, H:i" }} {% include "includes/edit_news.html" with item=item %}

{{ item.publication.title }}

{% if not item.publication.image_url %}

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

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

{% trans "Go to all news" %}

{% endblock all_items_link %} {% endif %}