list.html 638 B

12345678910111213141516171819202122
  1. {{ define "main" }}
  2. <div class="page-title">
  3. <h1>{{.Title}}</h1>
  4. </div>
  5. <div class="content">
  6. {{ with .Content -}}{{ . }}{{ end }}
  7. </div>
  8. {{- range (.Pages.ByParam "shot_date").Reverse}}
  9. <section class="section tdln">
  10. <a href="{{ .RelPermalink }}" class="section-title">
  11. <h2>{{.Title}}</h2>
  12. </a>
  13. <a href="{{ .RelPermalink }}" class="album-row">
  14. {{ with .Resources.Match "*thumbnail*" -}}
  15. {{ range . -}}
  16. <img class="img-tile" loading="lazy" src="{{.RelPermalink}}" alt="thumbnail" width="{{.Width}}" height="{{.Height}}">
  17. {{- end }}
  18. {{- end }}
  19. </a>
  20. </section>
  21. {{ end -}}
  22. {{- end }}