11 lines
404 B
HTML
11 lines
404 B
HTML
|
{{ define "main" }}
|
||
|
{{ .Content }}
|
||
|
{{ range site.RegularPages }}
|
||
|
<h2><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></h2>
|
||
|
{{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
|
||
|
{{ $dateHuman := .Date | time.Format ":date_long" }}
|
||
|
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time><br />
|
||
|
{{ .Summary | strings.Truncate 200 }}
|
||
|
{{ end }}
|
||
|
{{ end }}
|