site.collections.guides.docs
的循环,同时在.html
文件夹中生成了正确的_site
。显示了github页面中的循环,如果有人看了on my repo,我们会感激不尽。
// index.html
{% for doc in site.collections.guides.docs %}
{{ doc.content }}
{% endfor %}
// _config.yml
collections :
guides:
output: true
答案 0 :(得分:0)
我会这样写:
{% for doc in site.guides %}
{{ doc.content }}
{% endfor %}
配置如下:
collections:
guides:
output: true