{{ define "main" }} <div class="about"> <h1>Recent posts</h1> {{ range first 5 .Site.RegularPages }} {{ if eq .Type "post"}} <article class="h-entry entry"> <h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3> <h4 class="decription"><a href="{{ .RelPermalink }}">{{ .Description }}</a></h4> {{ .Summary }} </article> {{ if .Truncated }} <!-- This <div> includes a read more link, but only if the summary is truncated... --> <div class="readmore"> <br/><a href="{{ .RelPermalink }}">Read Moreā¦</a> </div> {{ end }} {{ end }} {{ end }} </div> {{ end }}