On my blog archive page the template is set to provide a list of all posts:
{{ $list := (where .Site.Pages "Type" "post") }}
{{ range $list }}
<p class="h-entry">
<a href="{{ .Permalink }}" class="u-url"><span class="dt-published" datetime="{{ .Date.Format "2006-01-02T15:04:05-0700" }}">{{ .Date.Format "Jan 2, 2006" }}</span></a>:
{{ if .Title }}
<span class="p-name"><b>{{ .Title }}</b></span>
{{ end }}
<span class="p-summary">{{ .Summary | truncate 150 }}</span>
</p>
{{ end }}
Currently that list is cutting off about 2 years before the actual end of my archive. I haven’t gone back to count or see if there’s a magic number where the loop is terminating… is there some max number of posts that will get returned on this kind of query? Would be nice to be able to get all the way back to post #1 on the archive!