File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ {{ if or .PrevInSection .NextInSection }}
2
+ < div class ="pagination ">
3
+ < div class ="pagination__title ">
4
+ < span class ="pagination__title-h "> {{ $.Site.Params.ReadOtherPosts }}</ span >
5
+ < hr />
6
+ </ div >
7
+ < div class ="pagination__buttons ">
8
+ {{ if .PrevInSection }}
9
+ < a href ="{{ .PrevInSection.Permalink }} " class ="button inline prev " aria-label ="Next Post: {{ .PrevInSection.Title }} ">
10
+ < [< span class ="button__text "> {{ .PrevInSection.Title }}</ span > ]
11
+ </ a >
12
+ {{ end }}
13
+ {{ if and .PrevInSection .NextInSection }}
14
+ ::
15
+ {{ end }}
16
+ {{ if .NextInSection }}
17
+ < a href ="{{ .NextInSection.Permalink }} " class ="button inline next " aria-label ="Previous Post: {{ .NextInSection.Title }} ">
18
+ [< span class ="button__text "> {{ .NextInSection.Title }}</ span > ] >
19
+ </ a >
20
+ {{ end }}
21
+ </ div >
22
+ </ div >
23
+ {{ end }}
You can’t perform that action at this time.
0 commit comments