templates/app/base/footer/item.html.twig line 1

Open in your IDE?
  1. <div class="d-flex col-sm-{{ itemWidth }} col-xs-12 align-items-center my-0 {% if not is_mobile() %} py-0{% else %} py-1{% endif %} pl-0">
  2.     <div class="d-flex col-1 align-items-center justify-content-center p-0 my-0 h-100 {% if not content|default(0) %}w-100{% endif %}">
  3.         <img class="w-100" src="{{ imageSource }}">
  4.     </div>
  5.     {% if content|default(0) %}
  6.         <div class="mh-100 col-11 children-my-0 px-0 ml-2 ff-os-regular">
  7.             {{ content|raw }}
  8.         </div>
  9.     {% endif %}
  10. </div>