14 lines
620 B
HTML
14 lines
620 B
HTML
{{range .Sections}}
|
|
{{if eq .Level 1}}<h1 id="{{.ID}}">{{.Heading}}{{if .EditURL}} <a href="{{.EditURL}}" class="btn btn-small">edit</a>{{end}}</h1>
|
|
{{else if eq .Level 2}}<h2 id="{{.ID}}">{{.Heading}}{{if .EditURL}} <a href="{{.EditURL}}" class="btn btn-small">edit</a>{{end}}</h2>
|
|
{{else}}<h3 id="{{.ID}}">{{.Heading}}{{if .EditURL}} <a href="{{.EditURL}}" class="btn btn-small">edit</a>{{end}}</h3>{{end}}
|
|
{{if .Body}}{{.Body}}{{end}}
|
|
{{if .Photos}}
|
|
<div class="photo-grid">
|
|
{{range .Photos}}
|
|
<a href="{{.URL}}" target="_blank"><img src="{{.ThumbURL}}" alt="" loading="lazy"></a>
|
|
{{end}}
|
|
</div>
|
|
{{end}}
|
|
{{end}}
|