2024-12-12 20:47:37 -06:00
|
|
|
<div class ="image-gallery" style="margin: auto;">
|
|
|
|
{% assign images = site.data[include.data_file] %}
|
2024-12-15 20:24:22 -06:00
|
|
|
{% assign sorted_images = images | sort: "name" | reverse %}
|
|
|
|
{% for image in sorted_images %}
|
2024-12-12 20:47:37 -06:00
|
|
|
{% assign alt_text = image.alt | default: "image" %}
|
|
|
|
<div class="box">
|
|
|
|
{% if image.link != "" %}
|
|
|
|
<a href="{{ image.link }}" target="_blank">
|
|
|
|
<img src="{{ '/' | append: include.folder | append: '/' | append: image.imgurl }}" alt="{{ alt_text }}">
|
|
|
|
</a>
|
|
|
|
{% else %}
|
|
|
|
<img src="{{ '/' | append: include.folder | append: '/' | append: image.imgurl }}" alt="{{ alt_text }}">
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|