mirror of
https://github.com/carsonip/hugo-theme-minos
synced 2025-12-30 03:19:49 -08:00
14 lines
494 B
HTML
14 lines
494 B
HTML
<nav id="article-nav">
|
|
{{ if .Prev }}
|
|
<a href="{{ .Prev.RelPermalink }}" id="article-nav-newer" class="article-nav-link-wrap">
|
|
<div class="article-nav-title"><span><</span>
|
|
{{ .Prev.Title }}
|
|
</div>
|
|
</a>
|
|
{{ end }}
|
|
{{ if .Next }}
|
|
<a href="{{ .Next.RelPermalink }}" id="article-nav-older" class="article-nav-link-wrap">
|
|
<div class="article-nav-title">{{ .Next.Title }} <span>></span></div>
|
|
</a>
|
|
{{ end }}
|
|
</nav> |