如何在Jekyll的_posts下为每个类别创建一个目录?

时间:2014-10-31 14:18:39

标签: jekyll github-pages

我想在我的Jekyll网站上建立这样的结构:

_posts php 2014-10-31-this-is-a-test.md ruby 2014-12-01-some-other-test.md

我希望php目录中的所有帖子都在PHP类别中,ruby中的所有帖子都在Ruby类别中。这是我的_config.yml文件:

defaults: - scope: path: "" type: "posts" values: layout: post comments: true share: true - scope: path: "_posts/php" type: "posts" values: category: PHP - scope: path: "_posts/ruby" type: "posts" values: category: Ruby

然而,这不起作用。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

path: "php"path: "ruby"设置类别。

注意:any category set in the front matter will replace the one in default config