以11ty遍历子目录中的项目

问题描述

使用以下目录结构,我需要遍历子目录中的项目:

|_ _includes
|_ _site
|_ books
   |_ book-one
      |_ index.html
      |_ sections
         |_ section-one
            |_ index.html
            |_ chapters
               |_ index.html
               |_ chapter-one.html
               |_ chapter-two.html
               |_ chapter-three.html
               |_ chapter-four.html

在上面的section-one/index.html中应循环浏览并列出chapters子目录中的项目。

每个chapter-x.html都包含YAML前端问题,例如:

---
title: This is the Title
layout: layouts/chapter.yaml
---
<p>Lorem ipsum dipity doo</p>

以及我的版面布局

---
layout: layouts/master.liquid
---
<ol>
{%- for chapter in chapters -%}
  <li>{{ title }}</li>
{%- endfor -%}
</ol>

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)