HUGO, 記事前後のページャー
前後の記事に移動するリンク、こんな感じで書いてる。MOL の pager を真似して 9割9分そのままなんだけど、 .PrevInSection とかで移動する先をセクションの中で行うようにしてる。content/blog 、content/work の中だけで記事を移動するように。
<div class="pager">
<div class="pager-prev">
{{ with .PrevInSection }}
Prev: <a href="{{ .Permalink }}">{{ .Title }}</a>
{{ else }}
{{ end }}
</div>
<div class="pager-next">
{{ with .NextInSection }}
Next: <a href="{{ .Permalink }}">{{ .Title }}</a>
{{ else }}
{{ end }}
</div>
</div>
with と if の違いがまだわかってないぞ!