1
0
Fork 0
mirnet.org/themes/mir/layouts/_default/list.html
brooke badc1b7c62
Some checks failed
Hugo / build (push) Failing after -9s
initial
2024-09-12 13:41:14 -04:00

16 lines
No EOL
344 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ range .Pages.ByPublishDate.Reverse }}
<p>
<h3><a class="title" href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "metadata.html" . }}
<a class="summary" href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
</a>
</p>
{{ end }}
{{ partial "footer.html" . }}
{{ end }}