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

17 lines
338 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 }}
{{ partial "art-gallery" . }}
2024-09-30 17:40:46 -04:00
{{ partial "gallery-js" . }}
2023-07-02 22:24:51 -04:00
{{ end }}