custom/plugins/MojeBambinoPopup/src/Resources/views/storefront/layout/footer/footer.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@CrehlerMojebambinoEngine/storefront/layout/footer/footer.html.twig' %}
  2. {% block layout_footer_bottom %}
  3.     {{ parent() }} 
  4.     {% for b in page.footer.extensions.footer_baner.baner %}
  5.         {% if b.active==1 %}
  6.             <div class="baner">
  7.                 <div class="baner-zamknij">
  8.                     <button type="button" class="modal-close close" data-dismiss="modal" aria-label="Close">
  9.                         <span aria-hidden="true">{% sw_icon 'x' style { 'size': 'sm' } %} zamknij</span>
  10.                     </button>
  11.                 </div>
  12.                 <a href="{{ b.url }}"><img src="{{ b.obrazek }}"/></a>
  13.             </div>
  14.             <script>window.banerExpiration = {{ b.ciacho / 24 }}</script>
  15.         {% endif %}
  16.     {% endfor %}
  17. {% endblock %}
  18.