list.html (623B)
1 {{ define "content" }} 2 <main class="main"> 3 <ul class="h-feed"> 4 {{ range where .Pages.ByDate.Reverse "Section" "post" }} 5 <li class="h-entry"> 6 <h2 class="p-name"><a href="{{ .Permalink }}" class="u-url">{{ .Title }}</a></h2> 7 <time class="dt-published" datetime="{{ .Date.Format `Jan 02 2006` }}">{{ .Date.Format "Jan 02, 2006" }}</time> 8 9 <article class="p-summary"> 10 {{ .Summary }} 11 {{ if .Truncated }} 12 <p><a href="{{ .RelPermalink }}">Read Moreā¦</a></p> 13 {{ end }} 14 </article> 15 </li> 16 {{ end }} 17 </ul> 18 </main> 19 {{ end }} 20