Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. dump(gallery_images)
  2. array (size=2)
  3. 'img' =>
  4. array (size=15)
  5. 0 => 'path-to-file.jpeg'
  6. 1 => 'path-to-file.jpeg'
  7. .....
  8. 'alt' =>
  9. array (size=15)
  10. 0 => 'img 1 alt text'
  11. 1 => 'img 2 alt text'
  12.  
  13. {% for gallery_image in gallery_images %}
  14. <li>
  15. <img src="{{ gallery_image.img }}" alt="{{ gallery_image.alt }}" />
  16. </li>
  17. {% endfor %}
  18.  
  19. {{ gallery_image.0 }}
  20. {{ gallery_image.1 }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement