15 lines
523 B
HTML
Raw Normal View History

2025-01-07 19:43:39 -07:00
{{ define "main" }}
<section class="h-feed">
<h2>Photos</h2>
<div class="photo-grid">
{{ range .Pages }}
<figure class="h-entry">
<img src="{{ .Params.image }}" alt="{{ .Title }}" class="u-photo">
<figcaption class="p-name">{{ .Title }}</figcaption>
<time class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
</figure>
{{ end }}
</div>
</section>
{{ end }}