list.html (321B)
1 {{ define "main" }} 2 <section> 3 <hr> 4 5 <h2>Journal</h2> 6 7 <ul> 8 {{ range (where .Site.RegularPages "Type" "in" "journal") }} 9 <li> 10 <a href="{{ .Permalink }}">{{ .Title }}</a> 11 {{ .Date | time.Format "(2006-01-02)" }} 12 </li> 13 {{ end }} 14 </ul> 15 </section> 16 {{ end }}