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

10 lines
306 B
HTML

{{ 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>
<blockquote>{{ .Description }}<blockquote>
{{ end }}
{{ end }}