2025-06-11 09:36:54 +03:00
|
|
|
---
|
|
|
|
title: "Gallery"
|
|
|
|
order: 4
|
2025-09-09 18:12:57 +03:00
|
|
|
icon: "M2 2V30H30V2H2M5 26l6-9 5 6 5-9 6 12H5"
|
2025-06-11 09:36:54 +03:00
|
|
|
---
|
2025-06-18 18:38:20 +03:00
|
|
|
|
2025-06-11 09:36:54 +03:00
|
|
|
<section id="artworks">
|
2025-06-18 18:38:20 +03:00
|
|
|
<article>
|
2025-08-10 17:05:40 +03:00
|
|
|
{%for article in collections.articles%} {%if article.fileSlug == 'ocs'%}
|
|
|
|
{{ article.content }} {%endif%} {%endfor%}
|
2025-06-18 18:38:20 +03:00
|
|
|
<ul role="list">
|
2025-08-10 17:05:40 +03:00
|
|
|
{% assign sortedArtworks = collections.artworks | sortByFirstDate %} {%for artwork in sortedArtworks %}
|
2025-06-18 18:38:20 +03:00
|
|
|
<li>
|
|
|
|
<a href="{{artwork.page.url}}">
|
|
|
|
<figure>
|
2025-08-10 17:05:40 +03:00
|
|
|
{%if artwork.data.images[0]%}
|
2025-06-18 18:38:20 +03:00
|
|
|
<img src="{{artwork.data.images[0].src}}" alt="{{artwork.data.images[0].alt}}" {%if artwork.data.images[0].pixel%} style="image-rendering: pixelated" {%endif%} />
|
2025-08-10 17:05:40 +03:00
|
|
|
<figcaption>{{artwork.page.fileSlug}}{%if artwork.data.images.size > 1%}<p class="count">(+{{artwork.data.images.size| minus: 1}})</p>{%endif%}</figcaption>
|
2025-06-18 18:38:20 +03:00
|
|
|
{% if artwork.data.images[0].date %}
|
2025-08-10 17:05:40 +03:00
|
|
|
<time datetime="{{artwork.data.images[0].date|ISO}}">{{artwork.data.images[0].date|readable}}</time>
|
2025-06-18 18:38:20 +03:00
|
|
|
{%endif%} {%endif%}
|
|
|
|
</figure>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</article>
|
|
|
|
<article>
|
2025-08-10 17:05:40 +03:00
|
|
|
{%for article in collections.articles%} {%if article.fileSlug == 'fanart'%}
|
|
|
|
{{ article.content }} {%endif%} {%endfor%}
|
2025-06-18 18:38:20 +03:00
|
|
|
<ul role="list">
|
2025-08-10 17:05:40 +03:00
|
|
|
{%assign sortedFanarts = collections.fanarts|sortByFirstDate%} {%for
|
|
|
|
fanart in sortedFanarts%}
|
2025-06-18 18:38:20 +03:00
|
|
|
<li>
|
|
|
|
<a href="{{fanart.page.url}}">
|
|
|
|
<figure>
|
2025-08-10 17:05:40 +03:00
|
|
|
{%if fanart.data.images[0]%}
|
2025-06-18 18:38:20 +03:00
|
|
|
<img src="{{fanart.data.images[0].src}}" alt="{{fanart.data.images[0].alt}}" />
|
|
|
|
<figcaption>{{fanart.page.fileSlug}}</figcaption>
|
2025-08-10 17:05:40 +03:00
|
|
|
{%if fanart.data.images[0].date%}
|
|
|
|
<time datetime="{{fanart.data.images[0].date|ISO}}">{{fanart.data.images[0].date|readable}}</time>
|
2025-06-18 18:38:20 +03:00
|
|
|
{%endif%} {%endif%}
|
|
|
|
</figure>
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</article>
|
|
|
|
</section>
|