Files
hugo-bootswatch-slate/layouts/partials/prev-next-post.html
2018-02-18 16:24:25 +02:00

15 lines
484 B
HTML

{{ if or (.PrevInSection) (.NextInSection) }}
<div class="row">
<div class="col-12 col-md-6">
{{ if .PrevInSection }}
<a href="{{ .PrevInSection.Permalink }}"><i class="fa fa-chevron-left fa-fw"></i>{{ .PrevInSection.Title }}</a>
{{ end }}
</div>
<div class="col-12 col-md-6">
{{ if .NextInSection }}
<a href="{{ .NextInSection.Permalink }}">{{ .NextInSection.Title }}<i class="fa fa-chevron-right fa-fw"></i></a>
{{ end }}
</div>
</div>
{{ end }}