list.html 587 B

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