我正在尝试使用jekyll-paginate-v2
,然后尝试在默认的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变量,什么都不会显示,我在这里想念的是什么?