{% if options.alignment == 'horizontal' %}
{% for row in items %}
{% for column in row.content %}
{{ column.content }}
{% endfor %}
{% endfor %}
{% else %}
{% if options.row_class_default %}
{%
set row_classes = [
'views-row',
options.alignment == 'horizontal' ? 'clearfix',
]
%}
{% endif %}
{% if options.col_class_default %}
{%
set col_classes = [
'views-col',
options.alignment == 'vertical' ? 'clearfix',
]
%}
{% endif %}
{% for column in items %}
{% for row in column.content %}
{{ row.content }}
{% endfor %}
{% endfor %}
{% endif %}