hugo-theme-dor/layouts/_default/list.html

13 lines
279 B
HTML

{{ define "title" }}
{{ .Title }}
{{ end }}
{{ define "main" }}
<section id="list">
{{- range .Data.Pages }}
<section class="list-item">
{{ .Date.Format "2006-01-02" }} <a href="{{- .Permalink }}">{{ .Title }}</a>
</section>
{{- end }}
</section>
{{ end }}