You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 line
529 B
1 line
529 B
10 years ago
|
{% for set in page.image_set %}{% if set.name == include.set %}{% for image in set.images %}{% if include.image == null or include.image == image.id or include.image == image.path %}<a href="{{ page.imgfolder }}/{{ image.path }}" data-lightbox="image-{{ image.path }}" {% if image.title != null %}data-title="{{ image.title }}" title="{{ image.title }}"{% endif %}><img src="{{ page.imgfolder }}/{{ image.thumb }}" {% if image.title != null %}title="{{ image.text }}"{% endif %}></a>{% endif %}{% endfor %}{% endif %}{% endfor %}
|