You are here

lightgallery.html.twig in Lightgallery 8

<div class="lightgallery-wrapper">
    <ul class="lightgallery" id="lightgallery-{{ id }}">
        {% for item in items %}
        <li data-src="{{ item.slide }}" style="{{ item.row_style }}" data-sub-html="{{ item.title }}">
            {% if item.field_label is not empty %}
            <div class="field-label">
                <label>{{ item.field_label }}</label>
            </div>
            {% endif %}
            <div class="field-content">
                <a href="">
                    <img class="img-responsive" src="{{ item.thumb }}" />
                </a>
            </div>
        </li>
        {% endfor %}
    </ul>
</div>

File

templates/lightgallery.html.twig
View source
  1. <div class="lightgallery-wrapper">
  2. <ul class="lightgallery" id="lightgallery-{{ id }}">
  3. {% for item in items %}
  4. <li data-src="{{ item.slide }}" style="{{ item.row_style }}" data-sub-html="{{ item.title }}">
  5. {% if item.field_label is not empty %}
  6. <div class="field-label">
  7. <label>{{ item.field_label }}</label>
  8. </div>
  9. {% endif %}
  10. <div class="field-content">
  11. <a href="">
  12. <img class="img-responsive" src="{{ item.thumb }}" />
  13. </a>
  14. </div>
  15. </li>
  16. {% endfor %}
  17. </ul>
  18. </div>