templates/media/widget/albums.html.twig line 1

Open in your IDE?
  1. <div class="my-3 p-3 bg-white rounded">
  2.     <h6 class="widget-page-title border-bottom border-gray pb-2 mb-2">
  3.         {{ 'Albums {name}'|trans({'{name}': profile.name}, 'media_portfolio') }}
  4.     </h6>
  5.     <div class="row row-cols-3 row-cols-md-6">
  6.     {% for album in albums %}
  7.         {{ include('media/portfolio/partials/album_simple.html.twig') }}
  8.     {% endfor %}
  9.     {% if creditsAlbum %}
  10.         {{ include('media/portfolio/partials/credited.html.twig') }}
  11.     {% endif %}
  12.     </div>
  13. </div>