templates\parts\_footer-item-col.html.twig line 1

Open in your IDE?
  1. {% if column|length != null %}
  2.     <div class="col {% if footer[footerType][columnNum][0] is defined and footer[footerType][columnNum][0]["column-classes"] is defined %}{% include 'parts/_footer-item-classes.html.twig' with {classes:footer[footerType][columnNum][0]["column-classes"]} only %}{% endif %}"> 
  3.     {% if not column[0].empty %}
  4.         {% for item in column %}           
  5.                         {% include 'parts/_footer-item.html.twig' %}
  6.         {% endfor %}
  7.     {% endif %}
  8.      </div>
  9. {% endif %}