templates/media/portfolio/partials/photo_simple.html.twig line 1

Open in your IDE?
  1. <div class="col p-1" id="media-{{ photo.id}}" data-type="photo" data-id="{{ photo.id }}">
  2.     {% if photo.active %}
  3.         {% set filter = 'normal' %}
  4.     {% else %}
  5.         {% set filter = 'normal_gayscale' %}
  6.     {% endif %}
  7.     {% if album is defined and album is not empty %}
  8.         {% set route = path('portfolio_photo', {slug: profile.slug, media: photo.hash, album: album.id}) %}
  9.     {% elseif type is defined and type is not empty %}
  10.         {% set route = path('portfolio_photo', {slug: profile.slug, media: photo.hash, type: type}|merge(params)) %}
  11.     {% else %}
  12.         {% set route = path('portfolio_photo', {slug: profile.slug, media: photo.hash}) %}
  13.     {% endif %}
  14.     <a href="{{ route }}">
  15.         <img src="{{ asset(path) | imagine_filter(filter) }}" class="img-fluid media-shadow">
  16.     </a>    
  17. </div>