webbed-site/_includes/layout/gallery.html

10 lines
364 B
HTML
Raw Normal View History

2024-09-26 12:47:17 -05:00
<div class ="image-gallery" style="margin: auto;">
{% assign images = site.data[include.data_file] %}
{% for image in images %}
<div class="box">
<a href="{{ image.link }}" target="_blank">
<img src="{{ '/' | append: include.folder | append: '/' | append: image.imgurl }}" alt="{{ image.imgurl }}">
</a>
</div>
{% endfor %}
</div>