我想在我的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
然而,这不起作用。有什么想法吗?
答案 0 :(得分:1)
path: "php"
或path: "ruby"
设置类别。
注意:any category set in the front matter will replace the one in default config。