2019-11-04 13:09:44 +00:00
|
|
|
{{ define "main" }}
|
|
|
|
<header class="header">
|
|
|
|
<h3 class="terms__title h3">{{ .Title }}</h3>
|
|
|
|
<div class="gallery__contents">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
</header>
|
2019-11-13 08:06:51 +00:00
|
|
|
|
2019-11-22 07:29:07 +00:00
|
|
|
{{ $root := . }}
|
2019-11-13 08:06:51 +00:00
|
|
|
{{ if in (lower .Params.Mode) "one" }}
|
2019-11-04 13:09:44 +00:00
|
|
|
<main class="gallery main">
|
2020-01-17 07:16:39 +00:00
|
|
|
<div class="grid gallery__container">
|
2019-11-04 13:09:44 +00:00
|
|
|
<div class="grid-sizer"></div>
|
2019-11-13 08:06:51 +00:00
|
|
|
{{ if .File.Dir }}
|
|
|
|
{{ $basename := (replace .File.Dir "\\" "/") }}
|
|
|
|
{{ range .Params.Images }}
|
|
|
|
<div class="grid-item">
|
2019-11-25 04:36:50 +00:00
|
|
|
<img src="{{ $basename | relURL }}{{ .image }}" alt="{{ print .caption }}" />
|
2020-01-08 17:58:15 +00:00
|
|
|
<div class="grid-item__desc hide">
|
|
|
|
<span class="grid-item__desc--text">
|
|
|
|
{{ .caption }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2019-11-13 08:06:51 +00:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
2019-11-04 13:09:44 +00:00
|
|
|
{{ end }}
|
2020-01-24 12:24:17 +00:00
|
|
|
</div>
|
2019-11-04 13:09:44 +00:00
|
|
|
{{ partial "pagination/pagination-single" . }}
|
|
|
|
</main>
|
2019-11-13 08:06:51 +00:00
|
|
|
|
|
|
|
{{ else }}
|
|
|
|
|
|
|
|
<main class="gallery main">
|
2020-01-17 07:16:39 +00:00
|
|
|
<div class="grid gallery__container">
|
2019-11-13 08:06:51 +00:00
|
|
|
<div class="grid-sizer"></div>
|
|
|
|
{{ if .File.Dir }}
|
|
|
|
{{ $basename := (replace .File.Dir "\\" "/") }}
|
|
|
|
{{ range (readDir (print "./static/" $basename)) }}
|
|
|
|
<div class="grid-item">
|
2019-11-25 04:36:50 +00:00
|
|
|
<img src="{{ $basename | relURL }}{{ .Name }}" alt="{{ index (split .Name ".") 0 }}"/>
|
2020-01-08 17:58:15 +00:00
|
|
|
<div class="grid-item__desc hide">
|
|
|
|
<span class="grid-item__desc--text">
|
|
|
|
{{ index (split .Name ".") 0 }}
|
|
|
|
</span>
|
|
|
|
</div>
|
2019-11-13 08:06:51 +00:00
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
{{ partial "pagination/pagination-single" . }}
|
|
|
|
</main>
|
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
|
2019-11-20 17:45:46 +00:00
|
|
|
<div class="hide">
|
2019-11-24 14:31:28 +00:00
|
|
|
{{ partial "search/site-search" . }}
|
2019-11-20 17:45:46 +00:00
|
|
|
</div>
|
2019-11-25 04:36:50 +00:00
|
|
|
{{ partial "body/photoswipe" . }}
|
2019-11-24 14:31:28 +00:00
|
|
|
{{ partial "script/gallery-script" . }}
|
2019-11-04 13:09:44 +00:00
|
|
|
{{ end }}
|