32bit.cafe/layouts/news/list.html

12 lines
274 B
HTML
Raw Normal View History

2024-05-01 00:33:01 +00:00
{{ define "main" }}
2024-05-10 19:26:39 +00:00
<h2>{{ .Title }}</h2>
2024-05-01 00:33:01 +00:00
{{ .Content }}
{{ range .Pages }}
<section>
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
<h3>{{ .PublishDate.Format "January 02, 2006" }}</h3>
{{ .Content }}
</section>
{{ end }}
{{ end }}