redstrate.com/themes/red/layouts/_default/guestart.html

22 lines
505 B
HTML
Raw Normal View History

2024-09-30 17:40:46 -04:00
{{/* Page layout used for guest art page. */}}
2023-07-02 22:24:51 -04:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
<hr>
2024-10-17 13:53:59 -04:00
{{ .Content }}
2023-07-02 22:24:51 -04:00
2024-10-17 13:53:59 -04:00
{{ $paginator := .Paginate (where .RegularPagesRecursive "Type" "art") }}
2023-07-02 22:24:51 -04:00
2024-10-17 13:53:59 -04:00
{{ $.Scratch.Set "paginator" (.Paginate ((where (where .RegularPagesRecursive "Type" "art") "Params.guest" "=" true))) }}
2023-07-02 22:24:51 -04:00
{{ partial "art-gallery" . }}
{{ end }}
2024-10-17 13:53:59 -04:00
{{ define "details" }}
{{ partial "art-sidebar" . }}
{{ end }}
2025-01-03 10:21:25 -05:00
{{ define "head" }}
{{ partial "gallery-js" . }}
{{ end }}