为什么 Jekyll 中没有输出 site.categories 数组?
Why is the site.categories array not being output in Jekyll?
我正在用 Jekyll 构建页面(不是帖子)。一页在front-matter定义了2个类别如下:
categories: [document, new]
然后在布局中我尝试输出类别 object/array,但没有输出任何内容:
<h1>Array: {{ site.categories }}</h1>
为什么这不能按预期输出数组?
只有 post 的类别用于填充 site.categories
数组。
在页面中,从前端访问类别的唯一方法是 {% for category in page.categories %}
。范围仅限于页面本身。 :-(
我正在用 Jekyll 构建页面(不是帖子)。一页在front-matter定义了2个类别如下:
categories: [document, new]
然后在布局中我尝试输出类别 object/array,但没有输出任何内容:
<h1>Array: {{ site.categories }}</h1>
为什么这不能按预期输出数组?
只有 post 的类别用于填充 site.categories
数组。
在页面中,从前端访问类别的唯一方法是 {% for category in page.categories %}
。范围仅限于页面本身。 :-(