mirror of
https://github.com/ParkerTenBroeck/ParkerTenBroeck.github.io.git
synced 2026-06-06 21:14:06 -04:00
16 lines
No EOL
488 B
HTML
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 %} |