1 2 3 4 5 6 7 8 9 10
{{ define "main" }} <div class="container"> <h1>{{ .Title }}</h1> <ul> {{ range .Pages }} <li><a href="{{ .Permalink }}">{{ if not .Params.notshowthedate }} {{ .Date.Format "2006-01-02" }} | {{ end }} {{ .Title }}</a></li> {{ end }} </ul> </div> {{ end }}