redstrate.com/themes/red/layouts/_default/art-nsfw.html

23 lines
524 B
HTML
Raw Normal View History

2024-10-17 13:53:59 -04:00
{{/* Page layout used for the main art gallery page. */}}
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
{{ .Content }}
{{ $tags := slice "fan art" "artfight" }}
{{ $art := .Site.GetPage "/art" }}
{{ $artworks := (where $art.RegularPagesRecursive "Type" "art") }}
{{ $nsfw_art := (where $artworks "Params.nsfw" "=" true) }}
{{ $.Scratch.Set "paginator" (.Paginate $nsfw_art) }}
{{ partial "art-gallery" . }}
2025-01-03 10:21:25 -05:00
{{ end }}
2024-10-17 13:53:59 -04:00
2025-01-03 10:21:25 -05:00
{{ define "head" }}
2024-10-17 13:53:59 -04:00
{{ partial "gallery-js" . }}
{{ end }}
2025-01-03 10:21:25 -05:00