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" . }}
|
2024-09-30 17:40:46 -04:00
|
|
|
|
|
|
|
{{ partial "gallery-js" . }}
|
2023-07-02 22:24:51 -04:00
|
|
|
{{ end }}
|
2024-10-17 13:53:59 -04:00
|
|
|
|
|
|
|
{{ define "details" }}
|
|
|
|
{{ partial "art-sidebar" . }}
|
|
|
|
{{ end }}
|