themes/webapicTheme/templates/bundles/SyliusShopBundle/Webapic/page/encartbleu.html.twig line 1

Open in your IDE?
  1.  {% if taxons %}
  2.         
  3.     <div class="block-type9-taxons">
  4.         <img class="logo" src="{{ asset('webapic-theme/images/accueil-banner-logo.jpg') }}" />
  5.         <ul>
  6.             {% for taxon in taxons %}
  7.                 {% set image_bg = '' %}              
  8.             
  9.                 {% if null != taxon.images %}
  10.                     
  11.                     {% for image in taxon.images %}
  12.                         {% set image_bg = asset('/media/image/'~image.path) %}
  13.                     {% endfor %}
  14.                 {% endif %}
  15.                 <li>
  16.                     {% if image_bg %}
  17.                         <div class="img-icone">
  18.                             <img src="{{ image_bg }}">
  19.                         </div>
  20.                     {% endif %}
  21.                     <div class="content">
  22.                         <span>{{ taxon.name }}</span>
  23.                         <p>{{ taxon.description|raw }}</p>
  24.                     </div>                    
  25.                 </li>
  26.             {% endfor %}  
  27.         </ul>
  28.     </div>           
  29. {% endif %}