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

18 lines
464 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>
{{ $paginator := .Paginate (where .RegularPagesRecursive "Type" "art") }}
{{ if eq $paginator.PageNumber 1}}
2024-09-30 17:40:46 -04:00
{{ .Content }}
2023-07-02 22:24:51 -04:00
{{ end }}
2024-10-16 17:57:10 -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" . }}
2024-09-30 17:40:46 -04:00
{{ partial "gallery-js" . }}
2023-07-02 22:24:51 -04:00
{{ end }}