mirror of
https://github.com/BioArchLinux/hugo-theme-archbio.git
synced 2025-03-10 12:02:42 +00:00
24 lines
801 B
HTML
24 lines
801 B
HTML
|
|
<!--
|
|
{{ if or .PrevInSection .NextInSection }}
|
|
<nav id="article-nav">
|
|
{{ if .PrevInSection }}
|
|
<a href="{{ .PrevInSection.Permalink }}" id="article-nav-older" class="article-nav-link-wrap">
|
|
<strong class="article-nav-caption">
|
|
{{with .Site.Data.l10n.articles.linked_posts.older}}{{.}}{{end}}
|
|
</strong>
|
|
<div class="article-nav-title">{{ .PrevInSection.Title }}</div>
|
|
</a>
|
|
{{ end }}
|
|
|
|
{{ if .NextInSection }}
|
|
<a href="{{ .NextInSection.Permalink }}" id="article-nav-newer" class="article-nav-link-wrap">
|
|
<strong class="article-nav-caption">
|
|
{{with .Site.Data.l10n.articles.linked_posts.newer}}{{.}}{{end}}
|
|
</strong>
|
|
<div class="article-nav-title">{{ .NextInSection.Title }}</div>
|
|
</a>
|
|
{{ end }}
|
|
</nav>
|
|
{{ end }}
|
|
-->
|