1
0
Files
Eric Taylor 9a313c53a8 Move theme from subrepo into the main repo
the theme is customized for this site so having it
as a sub repo dosent make sense
2025-12-24 11:05:37 -05:00

17 lines
572 B
HTML

{{ if not .Site.Params.NoPostNavigation }}
<nav id="article-nav">
{{ if .NextPage }}
<a href="{{ .NextPage.RelPermalink }}" id="article-nav-newer" class="article-nav-link-wrap">
<div class="article-nav-title"><span>&lt;</span>&nbsp;
{{ .NextPage.Title }}
</div>
</a>
{{ end }}
{{ if .PrevPage }}
<a href="{{ .PrevPage.RelPermalink }}" id="article-nav-older" class="article-nav-link-wrap">
<div class="article-nav-title">{{ .PrevPage.Title }}&nbsp;<span>&gt;</span></div>
</a>
{{ end }}
</nav>
{{ end }}