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

16 lines
302 B
HTML
Raw Normal View History

2021-05-02 21:51:34 +00:00
{{ define "title" }}
{{ .Title }}
{{ end }}
{{ define "main" }}
<main class="main-content">
{{ .Content }}
<section id="list">
{{- range .Data.Pages }}
<section class="list-item">
<a href="{{- .Permalink }}">{{ .Title }}</a>
</section>
{{- end }}
</section>
</main>
2021-05-02 21:51:34 +00:00
{{ end }}