{% extends 'D2NewsBundle::base.html.twig' %} {% set tag_list = d2_get_all_tag_list(news) %} {% if app.request.get('page') %} {% set current_page = 'Page: ' ~ app.request.get('page') %} {% else %} {% set current_page = 'Page: 1' %} {% endif %} {% block title %} {{ d2_sys_config('sys_orginization') }} - {% trans %}News{% endtrans %} {% endblock title %} {% block head_seo %} {% endblock head_seo %} {% block head_script_extra %} {% endblock head_script_extra %} {% block head_style_extra %} {% endblock head_style_extra %} {% block page_header %} {% endblock page_header %} {% block content %}
{% for k, v in app.request.query %} {% if k|lower not in ['search', 'tags'] %} {# Theme, Location, Institution #} {# Paritipation, exhibition, education / Johannesburg Athens etc / Rotterdam Museum, District Six Museum #} {% endif %} {% endfor %}

{% if news|length != 0 %} {% for entity in news %} {% set img_name = asset("bundles/d2core/images/" ~ d2_resource_image_name(entity.origPath)) %} {% if loop.first %}
{% endif %}
NEWS

{{ entity.title }}

{% if d2_sys_config('sys_text_show_desc') %}

{{ entity.titleInfo }}

{% endif %}

{{ entity.text|filterScript()|slice(0, 500)|raw }}

This {% trans %}News Item{% endtrans %} has been viewed {{ entity.viewCnt }} times.

READ MORE

{% if entity.tags|length > 0 %} {% for tag in entity.tags %} {{ tag.tag }} {% if not loop.last %} , {% endif %} {% endfor %} {% endif %} {{ entity.date|date('Y-m-d H:i') }} {{ entity.comments|length }} comments

{% if not loop.first and loop.index%2 == 0 %}
{% endif %} {% endfor %}
{% endif %}
{% endblock content %}