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

16 lines
No EOL
488 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", quality=60, speed=4) %}
<a href="{{ page.permalink }}">
<img src="{{ image.url }}" height="{{image.height}}" width="{{image.width}}" alt="{{page.description}}" decoding="async" fetchpriority=high />
</a>
{%- endfor %}
</div>
{% endblock main %}