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

15 lines
504 B
HTML
Raw Normal View History

{{ define "main" }}
<hgroup>
<h1>{{ .Title }}</h1>
{{ .Content }}
</hgroup>
{{ range .Pages }}
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
{{ $dateHuman := .Date.Format "January 2, 2006" }}
{{ $dateMachine := .Date.Format "2006-01-02T15:04:05-07:00" }}
<p><b>reading time:</b> {{ lower .ReadingTime }} mins</p>
<p><b>first posted:</b> <time datetime="{{ $dateMachine }}">{{ lower $dateHuman }}</time></p>
<caption><blockquote>{{ .Description }}</blockquote></caption>
{{ end }}
{{ end }}