{% if options.alignment == 'horizontal' %}
{% for row in items %}
{% for key, column in row.content %}
{% set li_class = key == 0 ? ' class=c-first' : loop.last ? ' class=c-last' : '' %}
-
{{ column.content }}
{% endfor %}
{% endfor %}
{% else %}
{% for column in items %}
{% for row in column.content %}
{{ row.content }}
{% endfor %}
{% endfor %}
{% endif %}