{% extends 'D2CoreBundle::base.html.twig' %} {% set entity = page_list[0] %} {% set tag_list = d2_get_home_tag_list(entity) %} {% if app.request.get('page') %} {% set current_page = 'Page: ' ~ app.request.get('page') %} {% else %} {% set current_page = 'Page: 1' %} {% endif %} {% block title %} Migration:Cities - Home Page {% endblock title %} {% block head_seo %} {% endblock head_seo %} {% block head_style_extra %} {% endblock head_style_extra %} {% block page_header %}
{% endblock page_header %} {% block content %} {% if entity.getRows|length > 0 %} {% for row in entity.getRows %}
{% if row.getRowItems|length > 0 %} {% for item in row.getRowItems %}
{% if item.caseStudy is not null %} {% elseif item.collection is not null %} {% elseif item.resource is not null %} {% set img_name = asset("bundles/d2core/images/" ~ d2_resource_image_name(item.resource.origPath)) %} {% elseif item.expert is not null %} {% elseif item.news is not null %} {% else %} NO CONTENT SELECTED {% endif %}
{% endfor %} {% endif %}
{% endfor %} {% endif %} {% endblock content %}