{{ define "main" }}
<article>
<!-- pulls in content/<collection>/_index.md -->
{{.Content}}
</article>
<ul id="list-posts">
<!-- pulls in content/<collection>/*.md -->
{{ range .Pages }}
<li>
<!-- see https://gohugo.io/functions/format/#hugo-date-and-time-templating-reference -->
<h1><a href="{{.Permalink}}">{{.Date.Format "2006-01-02"}} | {{.Title}}</a></h2>
<div class="post">
<p>{{.Summary}}</p>
{{ if .Truncated }}
<div>
<i><a href="{{.Permalink}}">Read Moreā¦</a></i>
</div>
{{ end }}
</div>
</li>
{{ end }}
</ul>
{{ end }}