How to debug Jekyll sites
One Problem
最近研究Jekyll遇到了不少坑,这里先讲其中的一个。
问题是这样的:我安装了jekyll-paginate
插件,想要分页显示我的blog,然后在主页的index.html里面写了如下代码:
{% for post in paginator.posts %}
<article class="post">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="post-content">{{ post.content }}</div>
</article>
{% endfor %}
此时,启动server是可以正确在主页面看到分页的blog的。然后我希望这个blog部分移到/blog/页面下,所以就新建了blog文件夹和其中的index.html,并把上面的代码贴到新建的这个index.html里面。然而,打开/blog/页面,什么blog内容都没有,更别说分页了。