{{ define "main" }}
<main id="site-content">
{{ $paginator := .Paginate (where .Site.RegularPages "Type" "blog") }}
{{ range $paginator.Pages }}
<article>
<header>
<h2 class><a href="{{ .Permalink }}">{{ .Title }}</a></h2>
<time>{{ .Date.Format "January 2, 2006" }}</time>
</header>
</article>
/* INSERT <HR> HERE EXCEPT FOR LAST IN RANGE */
{{ end }}
{{ template "partials/pagination.html" . }}
</main>
{{ end }}
I’m trying to insert a horizontal divider on every block in a range EXCEPT the last one. Something like {{ if ne $something }}<hr>{{ end }}
.
But I don’t know what that $something might be or how to go about setting that up! Any help would be greatly appreciated.