hugo-theme-hyde-hyde/layouts/partials/post-meta-after.html

15 lines
487 B
HTML
Raw Normal View History

<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 }}
2018-07-20 20:32:00 +00:00
</div>