templates/platform/component/organism/theme_default_security_footer.html.twig line 1

Open in your IDE?
  1. <footer class="main-footer {{ value.class }}" {% if value.background.color is defined %}style="background-color:{{ value.background.color }}"{% endif %}>
  2.     {% if value.container is defined and value.container == true %}
  3.         <div class="container">
  4.             <div class="row {% if value.wrapper is defined %} {{value.wrapper}}{%endif%}">
  5.     {% else %}
  6.             <div class="d-flex {% if value.wrapper is defined %} {{value.wrapper}}{%endif%}" style="flex-wrap: wrap;">
  7.     {% endif %}
  8.             {% for key, item in value.sections %}
  9.                 <div class="col{% if item.col is defined %}-{{ item.col }}{% endif %} {% if item.class is defined %}{{ item.class }}{% endif %}">
  10.                     {{ component('security.footer.sections.' ~ key) }}
  11.                 </div>
  12.             {% endfor %}
  13.     {% if value.container is defined and value.container == true %}
  14.             </div>
  15.         </div>
  16.     {% else %}
  17.         </div>
  18.     {% endif %}
  19. </footer>