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

12 lines
274 B
HTML
Raw Normal View History

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