11 lines
478 B
HTML
11 lines
478 B
HTML
<div class="list-gallery">
|
|
{% include gallery-photos.html %}
|
|
{% for photo in photos %}
|
|
<span itemprop="image" itemscope itemtype="http://schema.org/Photograph">
|
|
<a href="/{{ site.baseurl }}/{{ photo.url }}" itemprop="url">
|
|
<img alt="Photo: {{ photo.title }}" height="200" src="{{ site.asset_prefix }}/gallery/{{ gallery }}/{{ photo.name | remove:'.md' }}~200x200.jpg" title="{{ photo.title }}" width="200" />
|
|
</a>
|
|
</span>
|
|
{% endfor %}
|
|
</div>
|