BundleType(束类型)
Syntax
PAGE.BundleType(PAGE.束类型)
Returns
files.ContentClass(文件内容类)
页面束是一种封装内容和相关资源的目录。页面束有两种类型:叶束和分支束。详情请参阅详细信息。
Page
对象上的 BundleType
方法对于分支束返回 branch
,对于叶束返回 leaf
,如果页面不是页面束则返回空字符串。
content/
├── films/
│ ├── film-1/
│ │ ├── a.jpg
│ │ └── index.md <-- 叶束
│ ├── _index.md <-- 分支束
│ ├── b.jpg
│ ├── film-2.md
│ └── film-3.md
└── _index.md <-- 分支束
在模板中获取该值:
{{ .BundleType }}