我有多个级别的页面正面内容。我的页面首页看起来像这样:
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)
如何返回循环内行和列的模板名称?