ParkerTenBroeck.github.io/templates/gallery.html
2026-01-23 09:19:44 -05:00

16 lines
No EOL
381 B
HTML

{% extends "base.html" %}
{% block main %}
<br><br>
<div class="gallery">
{% for page in section.pages -%}
{% set image = resize_image(path=page.extra.picture_src, width=260, height=180, op="fit_width") %}
<a href="{{ page.permalink }}">
<img src="{{ image.url }}" alt="{{page.description}}" fetchpriority=high />
</a>
{%- endfor %}
</div>
{% endblock main %}