Jekyll Paginator不显示帖子

时间:2019-06-04 16:54:21

标签: javascript jekyll

我正在尝试使用jekyll-paginate-v2

对我的jekyll网站进行分页

,然后尝试在默认的html中呈现这样的帖子:

<div class="reading-container">
          <h1 class="post-title"></h1>{% for post in paginator.posts limit: 5 %}</h1> 
           <a href="">{{post.title}}</a>
           <br>
           <span class="post-date">{{post.date | date_to_long_string}}</span>
           <article>
              <img src="{{site.baseurl}}/assets/images/{{post.image}}"> 
               {{ post.excerpt  }}

              <button class="read-more-btn">Read more</button>
           </article>
         </ul>
         {% endfor %}

问题在于,通过使用paginator变量,什么都不会显示,我在这里想念的是什么?

0 个答案:

没有答案