1

我想在网页上显示来自 markdown 文件的元数据,因此我尝试使用变量名称(例如 {{ .Author}} )访问它。

这适用于 .Title 和 .Content 变量,但不适用于其他变量!似乎我错过了如何使用这些的重要细节。使用 .Author 变量,页面上的输出为 { map[]}。

提前致谢

降价文件:

---
title: ABC
author: "Foo Bar"
position: Manager
---


The actual content ...

网页:

{{ range where .Data.Pages "Type" "type"}}
<section>
    <div>
        <div>
            {{ .Title }}<br>
            {{ .Content }}
        </div>
        <div>
            {{ .Author }}<br>
            {{ .Position }}
        </div>
    </div>
</section>
{{ end }}
4

1 回答 1

2

原来您需要通过 .Params 变量访问非标准参数。

相关信息见https://gohugo.io/variables/page/

{{ range where .Data.Pages "Type" "type"}}
<section>
<div>
    <div>
        {{ .Title }}<br>
        {{ .Content }}
    </div>
    <div>
        {{ .Params.author }}<br>
        {{ .Params.position }}
    </div>
</div>
</section>
{{ end }}
于 2018-05-29T12:17:54.370 回答