mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
5ac0f751aa
723da4a37 Vendor the theme git-subtree-dir: docs git-subtree-split: 723da4a3769ee8a6c02758b553618143f92fccef
16 lines
669 B
HTML
16 lines
669 B
HTML
{{ if or .PrevInSection .NextInSection }}
|
|
{{/* this div holds these a tags as a unit for flex-box display */}}
|
|
<div date-pref>
|
|
{{if .NextInSection}}
|
|
<a href="{{.NextInSection.Permalink }}" class="dib f6 pl1 hover-bg-light-gray br-100" title="{{ .NextInSection.Title }} ">
|
|
{{ partial "svg/ic_chevron_left_black_24px.svg" (dict "fill" "#0594CB" "size" "30px") }}
|
|
</a>
|
|
{{end}}
|
|
|
|
{{if .PrevInSection}}
|
|
<a href="{{ .PrevInSection.Permalink }}" class="dib f6 pr1 hover-bg-light-gray br-100" title="{{ .PrevInSection.Title }}">
|
|
{{ partial "svg/ic_chevron_right_black_24px.svg" (dict "fill" "#0594CB" "size" "30px") }}
|
|
</a>
|
|
{{end}}
|
|
</div>
|
|
{{ end }}
|