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

16 lines
No EOL
450 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*2, height=180*2, op="fit_width", format="avif") %}
<a href="{{ page.permalink }}">
<img src="{{ image.url }}" height="{{image.height}}" width="{{image.width}}" alt="{{page.description}}" fetchpriority=high />
</a>
{%- endfor %}
</div>
{% endblock main %}