在Jekyll 2中,假设我有一个名为mycol
的集合,并且它在文件系统中有这样的结构:
_mycol/
00-intro.md
01-preface/
00-intro.md
01-something.md
02-subsection/
00-intro.md
03-hello.md
02-section/
00-intro.md
有没有办法让内循环检测当前项目是目录还是实际数据?
以下是我想要的一个例子:
{% for d in site.mycol %}
{% if d.content %}
{{ d.content }}
{% else %}
{% for v in d %}
{% if v.content %}
{{ v.content }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
有没有知道方法或黑客来实现这个目标?