You are here

facebook-album-photos.html.twig in Facebook Album 8

{% for photo in photos %}
    <div class="photo-wrapper">
      <a class="photo-thumb" target="_blank" title="" href="">
       <span class="photo-thumb-wrapper">
         <i data-photo-id="{{ photo.id }} " style="width: {{ settings.thumb_width }}px; height:{{ settings.thumb_height }}px;;"></i>
       </span>
      </a>
    </div>
{% endfor %}

File

templates/facebook-album-photos.html.twig
View source
  1. {% for photo in photos %}
  2. <div class="photo-wrapper">
  3. <a class="photo-thumb" target="_blank" title="" href="">
  4. <span class="photo-thumb-wrapper">
  5. <i data-photo-id="{{ photo.id }} " style="width: {{ settings.thumb_width }}px; height:{{ settings.thumb_height }}px;;"></i>
  6. </span>
  7. </a>
  8. </div>
  9. {% endfor %}