post section and taxonomy

This commit is contained in:
Gardient
2018-02-18 16:24:25 +02:00
parent b2198b31e1
commit 64b71057a6
7 changed files with 83 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
{{ 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 }}