I have the following index.html
. What would the simplest way to paginate it be?
{{ partial "header.html" . }}
<article>
{{ range .Site.RegularPages }}
<section class="note" id="{{ .Date.Unix }}">
<div class="note-date">
<a href="#{{ .Title | urlize }}" title="Permalink">⌘ {{ .Date.Format "02 Jan 2006 / 15:04:05" }}</a></div>
<div class="note-body">
{{ .Content }}
</div>
</section>
{{ end }}
</article>
{{ partial "footer.html" . }}