You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
628 B
17 lines
628 B
{{ $enabledPostNavigation := .Site.Params.postNavigation | default true }}
|
|
{{ if $enabledPostNavigation }}
|
|
<div class="navigation navigation-single">
|
|
{{ with .PrevInSection }}
|
|
<a href="{{ .RelPermalink }}" class="navigation-prev">
|
|
<i aria-hidden="true" class="fa fa-chevron-left"></i>
|
|
<span class="navigation-tittle">{{ .Title }}</span>
|
|
</a>
|
|
{{ end }}
|
|
{{ with .NextInSection }}
|
|
<a href="{{ .RelPermalink }}" class="navigation-next">
|
|
<span class="navigation-tittle">{{ .Title }}</span>
|
|
<i aria-hidden="true" class="fa fa-chevron-right"></i>
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
|