website/_src/_includes/gallery.njk

19 lines
750 B
Text
Raw Permalink Normal View History

2025-06-11 09:36:54 +03:00
---
layout: base
icon: "M 30 26 L 27 26 L 21 14 L 16 23 L 11 17 L 5 26 L 2 26 L 2 2 Q 2 2 10 6 A 1 1 0 0 0 10 13 A 1 1 0 0 0 10 6 L 2 2 L 30 2 L 30 26 L 30 30 L 2 30 L 2 26"
---
2025-06-16 16:31:53 +03:00
<article id="art">
<h3>{{ page.fileSlug }}</h3>
2025-06-11 09:36:54 +03:00
<section>
{% for image in images %}
<a href="{{ image.src }}">
2025-06-16 16:31:53 +03:00
<figure>
<img src="{{ image.src }}" alt="{{ image.alt }}" {% if image.pixel %}style="image-rendering: pixelated"{% endif %}>
2025-06-16 16:31:53 +03:00
<figcaption><time datetime="{{ image.date|ISO }}">{{ image.date|readable }}</time>{{ image.alt }}</figcaption>
</figure>
2025-06-11 09:36:54 +03:00
</a>
2025-06-16 16:31:53 +03:00
{% endfor %}
</section>
{{ content|safe }}
</article>