小编Ben*_*zay的帖子

Hugo 嵌套循环迭代多级 YAML

我有多个级别的页面正面内容。我的页面首页看起来像这样:

grids:
- template: section
  background_image: "/uploads/2018/05/01/q-mark.png"
  rows:
  - template: row
    stack-columns: tablet-s
    cols:
    - template: column
      title: "Column-1 Title"
- template: section
  background_image: "/uploads/2018/05/01/lk.png"
  rows:
  - template: row
    stack-columns: tablet-s
    cols:
    - template: column
      title: "Column-2 Title"
    rows:
  - template: row
    stack-columns: tablet-l
    cols:
    - template: column
      title: "Column-3 Title"
Run Code Online (Sandbox Code Playgroud)

我可以显示两个网格的第一级模板名称:

{{ range .Params.grids }}
   {{ .template }}
{{ end }}
Run Code Online (Sandbox Code Playgroud)

如何返回循环内行和列的模板名称?

yaml hugo

6
推荐指数
1
解决办法
2746
查看次数

标签 统计

hugo ×1

yaml ×1