This is a problem specific to the theme Cypress; hopefully, @cdevroe or @manton will fix it. An issue on GitHub was created back in June.
So, what can you do until the root cause is taken care of? Here are some suggested workarounds:
- Use another theme.
- Uncheck Paginate home page.
- Patch the problem yourself using the instructions below.
How to patch the problem in the theme
- Create a custom theme following these instructions.
- Edit the template
layouts/list.archivehtml.html
in your newly created custom theme. - Replace the line looking like this
{{ $paginator := .Paginate (where .Data.Pages.ByDate.Reverse "Type" "post") }}
with this{{ $paginator := $.Paginator }}
. - Hit Update Template and wait for your blog to rebuild. Or force a rebuild from the logs page.
- Hopefully, celebrate your success.
Once the problem is fixed upstream, you can disable and delete your custom theme.