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

23 lines
514 B
HTML
Raw Normal View History

2022-08-02 14:05:56 -04:00
{{ define "main" }}
<h2>{{ .Title }}</h2>
2023-02-23 17:39:20 -05:00
<hr>
2022-08-03 13:38:29 -04:00
{{ .Content }}
2022-08-02 14:05:56 -04:00
2022-12-28 11:09:13 -05:00
<div class="grid">
2023-03-06 22:06:56 -05:00
<div class="grid-sizer"></div>
{{ range .Data.Pages.ByDate.Reverse }}
{{ partial "render-art" . }}
2022-08-02 14:05:56 -04:00
{{ end }}
2022-12-28 11:09:13 -05:00
</div>
2022-12-28 10:24:59 -05:00
{{ $site := resources.Get "js/gallery.js" }}
2022-12-28 10:24:59 -05:00
{{ if hugo.IsProduction }}
{{ $site = $site | minify | fingerprint | resources.PostProcess }}
{{ end }}
<script src="{{ $site.RelPermalink }}" integrity="{{ $site.Data.Integrity }}"></script>
2022-08-02 14:05:56 -04:00
{{ end }}