6 lines
504 B
HTML
6 lines
504 B
HTML
{% assign photos=site.data.gallery[include.gallery].photos | sort:'date' %}
|
|
<div style="line-height:0; padding:4px 0 0 1px;">
|
|
{% for photo in photos %}
|
|
<a href="/{{ site.baseurl }}/{{ photo.url }}" style="display: inline-block; margin: 3px; text-decoration: none;"><img alt="Photo: {{ photo.title }}" height="96" src="{{ site.asset_prefix }}/gallery/{{ include.gallery }}/{{ photo.name | remove:'.md' }}~96x96.jpg" title="{{ photo.title }}" width="96" style="padding: 1px;" /></a>
|
|
{% endfor %}
|
|
</div> |