集合页面循环不在github上工作

时间:2016-11-18 15:23:55

标签: loops github collections jekyll github-pages

  • Jekyll版本:2.4.0
  • github pages版本:35

我的复制步骤

  1. 在本地构建并显示集合site.collections.guides.docs的循环,同时在.html文件夹中生成了正确的_site
  2. 但是,当我部署到github时,它不会显示循环内容。
  3. 我想要的输出

    显示了github页面中的循环,如果有人看了on my repo,我们会感激不尽。

    我的代码:

    // index.html
    {% for doc in site.collections.guides.docs %}
      {{ doc.content }}
    {% endfor %}
    
    // _config.yml
    collections :
      guides:
        output: true
    

1 个答案:

答案 0 :(得分:0)

我会这样写:

{% for doc in site.guides %}
  {{ doc.content }}
{% endfor %}

配置如下:

collections:
  guides:
    output: true