When I installed the theme, it did not display any posts in the index page.
In source/index.html, I changed {% for post in paginator.posts %} to {% for post in site.posts %}, and the posts are now displaying. However, the pagination in the index page is not working. I think this is an issue with paginator.
When I installed the theme, it did not display any posts in the index page.
In
source/index.html
, I changed{% for post in paginator.posts %}
to{% for post in site.posts %}
, and the posts are now displaying. However, the pagination in the index page is not working. I think this is an issue withpaginator
.