{{ define "main" }}
<main>
    <article>
        <!-- "{{.Content}}" pulls from the markdown content of the corresponding _index.md -->
        {{ .Content }}
    </article>
    <ul>
    {{ range .Paginator.Pages }}
        {{- partial "listitem.html" . -}}
        {{- partial "postinfo.html" . -}}
    {{ end }}
    </ul>
    {{- partial "pagination.html" . -}}
</main>
{{ end }}