templates/galleries.html.twig line 1

Open in your IDE?
  1. {% if wireFrame.wireFrameFile is defined and wireFrame.wireFrameFile != null %}
  2.     {% set wireFrameFile = wireFrame.wireFrameFile  %}
  3. {% else %}
  4.     {% set wireFrameFile = 'webLayoutBasic.html.twig' %}
  5. {% endif %}
  6. {% extends wireFrameFile %}
  7. {% block page_contents %}
  8. {% block _contents %}
  9. <div class="galleryList2">
  10. <h1>{{ 'module.galleries'|trans }}</h1>
  11. {% for gallery in galleryList %}
  12.         <div class="galleryPanel">
  13.           {% if gallery.galleryLogoUrl is defined and gallery.galleryLogoUrl != null and gallery.galleryLogoUrl != '' %}
  14.                 <a href="{{ path('root') }}web/{{ web.websiteId }}/gallery/{{ gallery.galleryId }}"><img src="{{ gallery.galleryLogoUrl }}" alt="Gallery Logo" border="0" width="200"></a>
  15.           {% endif %}
  16.           <div class="galleryDescription">
  17.             <a href="{{ path('root') }}web/{{ web.websiteId }}/gallery/{{ gallery.galleryId }}" class="galleryTitle">{{ gallery.galleryName }}</a>
  18.             {{ gallery.galleryDescription }}
  19.           </div>
  20.         </div>    
  21. {% endfor %}
  22. </div>
  23. {% endblock %}
  24. {% endblock %}