webbed-site/_includes/layout/gallery/music.html

11 lines
537 B
HTML
Raw Normal View History

2024-12-12 20:47:37 -06:00
{% assign images = site.data[include.data_file] %}
{% for image in images %}
{% assign alt_text = image.alt | default: "image" %}
{% if image.link != "" %}
<a href="{{ image.link }}" target="_self">
<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 %}
{% endfor %}