{# /** * @file * Theme override to display a view of unformatted rows. * * Available variables: * - title: The title of this group of rows. May be empty. * - rows: A list of the view's row items. * - attributes: The row's HTML attributes. * - content: The row's content. * - view: The view object. * - default_row_class: A flag indicating whether default classes should be * used on rows. * * @see template_preprocess_views_view_unformatted() */ #} {% if view.current_display == 'block_services_grid_style_icon1' %}
{% if rows %}
{{ header }}
{{ rows|render|str_replace_first('animate-in first','animate-in')|str_replace('
{% endif %}
{% elseif view.current_display == 'block_services_carousel_style_icon' %}
{% if rows %}
{% if header %}
{{ header }}
{% endif %}
{% endif %}
{% elseif view.current_display == 'block_services_grid_style_image' %}
{% if rows %}
{{ header }} {{ rows|render|str_replace_first('col-md-3 col-sm-6 col-xs-12 first','col-md-3 col-sm-6 col-xs-12')|str_replace('
{% endif %}
{% else %} {{ header }} {{ rows }} {{ footer }} {% endif %}