nekojimi.moe/pages/pictures.html

30 lines
661 B
HTML
Raw Normal View History

2025-03-27 20:01:14 +00:00
---
title: "Gallery"
layout: "main"
---
<style>
.grid {
display:grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.gallery-image {
max-width: 400px;
max-height:400px;
}
</style>
<div class="grid">
{% for image in site.data.gallery %}
2025-03-29 11:55:34 +00:00
<!-- {% if image.nsfw %}nsfw{% endif %} -->
<div class="gallery-item section ">
2025-03-27 20:01:14 +00:00
<div style="text-align:center;"><a href="/static/gallery-img/{{ image.url }}"><img class="gallery-image" src="/static/gallery-img/{{ image.url }}"/></a></div>
<p><b>Artist: </b><a href="{{ image.artist_url }}">{{ image.artist }}</a></p>
</div>
{% endfor %}
</div>