HUGO:错误调用其中:无法通过不匹配参数或大于或等于两个参数数组评价(HUGO: error ca

2019-10-29 22:39发布

我想创建一个ul具有特定PARAM了我的雨果网站的部分及其子页面的列表。

我基本上要在像这样的侧面多层次的UL菜单:

  • 介绍
    • 第1页
    • 第2页
  • 部分
    • 第3页
    • 第4页

这里是雨果的代码,我至今:

<ul class="section-one-and-two-pages">
{{ range .Site.Pages }}
    {{ range where ( where .Section  "intro" ) or ".Params.type" "==" "article" }}
   <li>{{.Permalink}}{{.Title}}</li>
    {{end}}
{{ end }}
</ul>

在我的网页(.MD)我加入的顶部:

type: = "article"

不过,我似乎无法得到这个工作。 我不断收到错误:

错误调用其中:无法通过不匹配参数或大于或等于两个参数数组评价

当编译。 有任何想法吗?

文章来源: HUGO: error calling where: can't evaluate the array by no match argument or more than or equal to two arguments
标签: hugo