modules/QSL/AMP/templates/web/customer/modules/QSL/AMP/modules/CDev/SimpleCMS/footer_menu.twig line 1

Open in your IDE?
  1. {##
  2.  # Footer menu
  3.  #}
  4. {% set open_close_buttons %}
  5.     <span class="opnr plus">
  6.         <svg fill="#386eaf" height="28" viewBox="0 0 24 24" width="28"
  7.              xmlns="http://www.w3.org/2000/svg">
  8.                 <path d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"/>
  9.                 <path d="M0 0h24v24H0z" fill="none"/>
  10.         </svg>
  11.     </span>
  12.     <span class="opnr minus">
  13.         <svg fill="#386eaf" height="28" viewBox="0 0 24 24" width="28"
  14.              xmlns="http://www.w3.org/2000/svg">
  15.                 <path d="M19 13H5v-2h14v2z"/>
  16.                 <path d="M0 0h24v24H0z" fill="none"/>
  17.         </svg>
  18.     </span>
  19. {% endset %}
  20. <div id="secondary-menu" class="clearfix">
  21.     <div class="ftr-menu">
  22.         <amp-accordion disable-session-states>
  23.             {% for item in this.itemsTree %}
  24.                 <section {% if not item.children %}class="empty"{% endif %}>
  25.                     <h4>
  26.                         {% if item.url %}
  27.                             <a href="{{ item.url }}">{{ item.label }}</a>
  28.                         {% else %}
  29.                             <span class="footer-title">{{ item.label }}</span>
  30.                         {% endif %}
  31.                         {% if item.children %}
  32.                             {{ open_close_buttons }}
  33.                         {% endif %}
  34.                     </h4>
  35.                     {% include 'modules/QSL/AMP/modules/CDev/SimpleCMS/footer_menu_items.twig' with {items: item.children} %}
  36.                 </section>
  37.             {% endfor %}
  38.         </amp-accordion>
  39.     </div>
  40. </div>