mestizo.monster/themes/corazon/layouts/_default/list.html

11 lines
306 B
HTML
Raw Normal View History

2024-03-02 17:44:53 -05:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ $date := .Date.Format "January 2, 2006" }}
<caption>{{ lower $date }}</caption>
2024-04-17 00:18:00 -04:00
<blockquote>{{ .Description }}<blockquote>
2024-03-02 17:44:53 -05:00
{{ end }}
{{ end }}