链接到下一篇文章

时间:2017-05-25 17:49:10

标签: hugo

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

如何创建这种链接?

1 个答案:

答案 0 :(得分:2)

听起来你想要.NextInSection变量。如果您使用with功能,则可以使其按预期工作。

{{ with .NextInSection }}
  <a href="{{ .Permalink }}">{{ .Title }}</a>
{{ end }}

您也可以以类似的方式使用.PrevInSection