website/_src/_includes/gallery.njk

30 lines
738 B
Text
Raw Normal View History

2025-06-11 09:36:54 +03:00
---
layout: base
---
2025-06-16 16:31:53 +03:00
<article id="art">
2025-09-11 19:30:58 +03:00
<h1>{{page.fileSlug}}{%for flag in flags%}<img src="{{flag.src}}">{%endfor%}</h1>
2025-08-10 17:05:40 +03:00
{{content|safe}}
<section>
{%for image in images%}
<a href="{{image.src}}">
<figure>
2025-09-11 19:30:58 +03:00
<img src="{{image.src}}" alt="" {%if image.pixel%} style="image-rendering: pixelated" {%endif%}>
2025-08-10 17:05:40 +03:00
<figcaption>{{image.alt}}</figcaption>
<time datetime="{{image.date|ISO}}">{{image.date|readable}}</time>
</figure>
</a>
{%endfor%}
</section>
{%for attachment in attachments%}
<section class="attachment">
<a href="{{attachment.src}}">
<figure>
<img src="{{attachment.src}}">
<figcaption>{{attachment.alt}}</figcaption>
</figure>
</a>
</section>
{%endfor%}
</article>