aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/layouts/partials/meta-tag_nav.html
blob: 8e68c5c1eaf4350b93fb8b0f608602ac236922b4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<div class="links-container section-nav">
{{ with .PrevInSection }}
    <a href="{{ .RelPermalink }}" class="prev">Previous: {{ .Title }}</a>
{{ end }}
{{ with .NextInSection }}
    <a href="{{ .RelPermalink }}" class="next">Next: {{ .Title }}</a>
{{ end }}
</div>
<div class="links-container">
    <a href="/{{ .Section }}" class="meta-tag">{{ title .Section }}</a>
    {{ partial "categories.html" . }}
    {{ partial "tags.html" . }}
</div>