redstrate.com/themes/red/layouts/partials/art-section.html
Joshua Goins 280a64b445
Some checks failed
Deploy / Deploy Website (push) Has been cancelled
Publish new kawari blog post, update shrines and other misc changes
2025-05-01 15:38:18 -04:00

15 lines
450 B
HTML

{{/* Partial used to display a grid of artwork for a specific character. This is currently hardcoded. */}}
<div class="grid">
<div class="grid-sizer"></div>
<div class="gutter-sizer"></div>
{{ $p := slice "ffxiv" }}
{{ range where .Site.RegularPages "Params.arttags" "intersect" $p }}
{{ if not (.Params.guest) }}
{{ partial "render-art" . }}
{{ end }}
{{ end }}
</div>
{{ partial "gallery-js" . }}