Jekyll子文件夹具有不同的输出

时间:2016-03-31 10:13:34

标签: jekyll

在jekyll中,我使用集合来定义网站的内容。我这样组织起来:

site
    _contents
        jobs               
   _solutions

我希望解决方案中的文件生成页面,而不是作业中的文件。所以我配置了这样的集合:

collections:
  contents:
    output: false
  solutions:
    output: true

然而,我的老板要我像这样组织网站:

site
    _contents
        jobs
        solutions

我尝试通过这样配置来完成这项工作:

collections:
  contents:
    output: false
    solutions:
      output: true

这不起作用。我试图做的是什么?

//编辑:config.yml中的另一个替代方案可能是......

collections:
  contents/jobs:
    output: false
  content/solutions:
    output: true

0 个答案:

没有答案