我想做一个分类页面。
{% for post in site.categories[CATEGORY_NAME] %}
<li><a href="{{ post.url }}">{{ post.title }}</a> ({{post.date|date:"%-d %B %Y"}})</li>
{% endfor %}
是否可以使用页面参数来填写CATEGORY_NAME
?然后我可以有一个文件category.html
可以作为多个类别的索引页面(即category.html?name=food
和category.html?name=animals
.
我找到了一些可以处理这个问题的插件,但是需要一个插件似乎有点过头了。
- https://github.com/zroger/jekyll-categories
- http://blog.nitrous.io/2013/08/30/using-jekyll-plugins-on-github-pages.html
这是我能找到的最相关的论坛帖子。
https://groups.google.com/forum/#!topic/jekyll-rb/y-dq-63Uvy4
如果没有插件我不能做到这一点,有充分的理由吗?