hugo-theme-hyde-hyde/layouts/partials/page-single/post-meta-bottom.html
2018-07-27 08:41:33 +10:00

14 lines
487 B
HTML

<div class="post--navigation post--navigation-single">
{{ with .PrevInSection -}}
<a href="{{ .RelPermalink }}" class="post--navigation-prev">
<i aria-hidden="true" class="fa fa-chevron-left"></i>
<span>{{ .Title }}</span>
</a>
{{- end }}
{{ with .NextInSection -}}
<a href="{{ .RelPermalink }}" class="post--navigation-next">
<span>{{ .Title }}</span>
<i aria-hidden="true" class="fa fa-chevron-right"></i>
</a>
{{- end }}
</div>