content
中的结构:
content
|-post
| |-00.md
| |-01.md
| |-02.md
|-about.md
在帖子的单个模板中,我想要一个页脚:
在伪模板代码中意味着:
{{ if nextpost.exists }} #. becomes nexpost here
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ end }}
其中nextpost
是当前邮件+ 1
如何创建这种链接?
答案 0 :(得分:2)
听起来你想要.NextInSection变量。如果您使用with功能,则可以使其按预期工作。
{{ with .NextInSection }}
<a href="{{ .Permalink }}">{{ .Title }}</a>
{{ end }}
您也可以以类似的方式使用.PrevInSection
。