diff options
Diffstat (limited to 'themes/terminal/layouts/partials/posts_pagination.html')
-rw-r--r-- | themes/terminal/layouts/partials/posts_pagination.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/themes/terminal/layouts/partials/posts_pagination.html b/themes/terminal/layouts/partials/posts_pagination.html new file mode 100644 index 0000000..04951d5 --- /dev/null +++ b/themes/terminal/layouts/partials/posts_pagination.html @@ -0,0 +1,26 @@ +{{ if or .NextInSection .PrevInSection }} +<div class="pagination"> + <div class="pagination__title"> + <span class="pagination__title-h">{{ $.Site.Params.ReadOtherPosts }}</span> + <hr /> + </div> + <div class="pagination__buttons"> + {{ if .NextInSection }} + <span class="button previous"> + <a href="{{ .NextInSection.Permalink }}"> + <span class="button__icon">←</span> + <span class="button__text">{{ .NextInSection.Title }}</span> + </a> + </span> + {{ end }} + {{ if .PrevInSection }} + <span class="button next"> + <a href="{{ .PrevInSection.Permalink }}"> + <span class="button__text">{{ .PrevInSection.Title }}</span> + <span class="button__icon">→</span> + </a> + </span> + {{ end }} + </div> +</div> +{{ end }}
\ No newline at end of file |