简体   繁体   中英

pagination in jekyll not working

I'm trying to add pagination in my Jekyll based project .

So far, I have followed the below steps:

I have set up _config.yml like this:

#Show 5 posts each page 
paginate: 5
paginate_path: "/index/page:num/"

If your posts printing loop you're using :

{% for post in site.posts %}

But, you must use :

{% for post in paginator.posts %}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM