the following code in index.html was working fine, until i upgraded to 0.77. Now it just displays a “Posts” title and a read more button and when I click the read more button it gets me to http://localhost:1313/posts/
where my posts appear fine with pagination.
I cannot understand why this is happening.
{{ $paginator := .Paginate (where .Data.Pages "Type" "posts") 10 }}
<ul class="indexlist">
{{ range $paginator.Pages }}
<li>
<h1>{{ .Title }}</h1>
<p><i><span class="author">By {{.Params.author}}</span> • <span class="date">{{ .Date.Format "January 2006" }}</span> • {{ partial "readingTime.html" . }} </i>
<p>{{.Summary}} </p>
<a href="{{ .RelPermalink}}" class="btn btn-outline-primary">Read More...</a>
</li>
{{ end }}
</ul>