hugo-theme-archbio/layouts/partials/prev_next_post.html
starsareintherose 727c862dda init
2021-12-28 21:09:14 +00:00

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 }}
-->