hugo-theme-dor/layouts/healing-music/list.html

16 lines
302 B
HTML

{{ define "title" }}
{{ .Title }}
{{ end }}
{{ define "main" }}
<main class="main-content">
{{ .Content }}
</main>
<section id="list">
{{- range .Data.Pages }}
<section class="list-item">
<a href="{{- .Permalink }}">{{ .Title }}</a>
</section>
{{- end }}
</section>
{{ end }}