Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. {% setcontent myprojects = 'projects' %}
  2. {% for project in myprojects %}
  3. <div class="slide">
  4. {% for image in project.imagelist %}
  5. <img src="{{ image.filename|image }}" width="{{ image.width|image }}" height="{{ image.height|image }}">
  6. {% endfor %}
  7. </div>
  8. {% endfor %}
  9.  
  10. {% for galleryImage in record.gallery %}
  11. <li>
  12. <a href="{{ imageinfo(galleryImage.filename).url }}" title="{{ galleryImage.title }}">
  13. {% if imageinfo(galleryImage.filename).landscape %}
  14. <img src="{{ thumbnail(galleryImage, 0, 240) }}" class="landscape">
  15. {% elseif imageinfo(galleryImage.filename).portrait %}
  16. <img src="{{ thumbnail(galleryImage, 0, 240) }}" class="portrait">
  17. {% else %}
  18. <img src="{{ thumbnail(galleryImage, 240, 240) }}" class="square">
  19. {% endif %}
  20. </a>
  21. </li>
  22. {% endfor %}
  23.  
  24. {% for image in project.imagelist %}
  25. {% set exif_data = imageinfo(image).info.exif %}
  26. // extract what data you want from the EXIF object for each image
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement