themes/webapicTheme/templates/bundles/SyliusShopBundle/Webapic/menu-scroll.html.twig line 1

Open in your IDE?
  1. {% if taxons %}
  2.     <ul>
  3.         {% for taxon in taxons  %}
  4.             
  5.             {% set imagepath = '' %}
  6.             {% for image in taxon.images %}
  7.                 {% set imagepath = asset('/media/image/'~image.path) %}                                     
  8.             {% endfor %}
  9.                 
  10.                
  11.              <li>
  12.                 <a href="#">
  13.                     {% if imagepath %}
  14.                         <img src="{{ imagepath }}" class="ui image" />
  15.                     {% endif %}
  16.                     {{ taxon.name }}
  17.                 </a>
  18.             </li>
  19.             
  20.         {% endfor %}
  21.     </ul>
  22. {% endif %}