templates/front/modules/slideshow/block.html.twig line 1

Open in your IDE?
  1. <div class="module module-slideshow">
  2. {% if is_granted('ROLE_ADMIN') %}
  3. <div class="admin-tools">
  4. <a href="{{ path('admin_modulecarousel_edit',{hookId:module.id}) }}" class="admin-update" target="_blank">modifier</a>
  5. </div>
  6. {% endif %}
  7. <div class="ctn">
  8. <ul class="slideshow">
  9. {% for item in module.data.items %}
  10. {% if item.matchPriceContext(customerMgr.getPriceContext()) %}
  11. {% if (app.request.getLocale() == 'fr') and item.imgFr %}
  12. <li><a href="{{ item.getUrlFr() }}"><img src="{{ asset(item.imgFr) }}" alt=""></a></li>
  13. {% elseif (app.request.getLocale() == 'en') and item.imgEn %}
  14. <li><a href="{{ item.getUrlEn() }}"><img src="{{ asset(item.imgEn) }}" alt=""></a></li>
  15. {% endif %}
  16. {% endif %}
  17. {% endfor %}
  18. </ul>
  19. </div>
  20. </div>