4

我想做一个分类页面。

{% 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=foodcategory.html?name=animals.

我找到了一些可以处理这个问题的插件,但是需要一个插件似乎有点过头了。

  1. https://github.com/zroger/jekyll-categories
  2. 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

如果没有插件我不能做到这一点,有充分的理由吗?

4

1 回答 1

8

我认为正确的答案是 Jekyll 页面必须在提供之前编译为 html。如果液体语言采用参数,则这是不可能的。

于 2013-10-21T17:14:48.100 回答