templates/theme/showThemes.html.twig line 1

Open in your IDE?
  1. {% for theme in themes %}                    
  2.     <div class="col text-center theme">
  3.         <a href="{{ path('showThemeBySlug', { slug:theme.slug }) }}" title="{{ theme.name|capitalize }}">
  4.             {# <img class="img-fluid" src="/image/themes/{{ theme.slug }}.jpg" alt=""> #}
  5.             <img src="{{ vich_uploader_asset(theme.picto, 'file')|imagine_filter('theme') }}" alt="{{ theme.picto.name }}" class="img-fluid"><br/>
  6.             {{ theme.name|capitalize }}
  7.         </a>
  8.     </div>
  9. {% endfor %}