mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-09 05:36:07 +01:00
30 lines
No EOL
1.3 KiB
HTML
30 lines
No EOL
1.3 KiB
HTML
{{ if and (not $.Site.Params.DisableReadOtherPosts) (or .NextInSection .PrevInSection) }}
|
|
<div class="pagination">
|
|
{{ if .Site.Params.ReadOtherPosts }}
|
|
<div class="pagination__title">
|
|
<span class="pagination__title-h">{{ .Site.Params.ReadOtherPosts }}</span>
|
|
<hr />
|
|
</div>
|
|
{{ end }}
|
|
|
|
<div class="pagination__buttons">
|
|
{{ if .NextInSection }}
|
|
<span class="button previous">
|
|
<a href="{{ .NextInSection.RelPermalink }}">
|
|
<span class="button__icon">←</span>
|
|
<span class="button__text">{{ .NextInSection.Title | default (.NextInSection.Date.Format .Site.Params.dateform) }}</span>
|
|
</a>
|
|
</span>
|
|
{{ end }}
|
|
{{ if and .NextInSection .PrevInSection }} {{ end }}
|
|
{{ if .PrevInSection }}
|
|
<span class="button next">
|
|
<a href="{{ .PrevInSection.RelPermalink }}">
|
|
<span class="button__text">{{ .PrevInSection.Title | default (.PrevInSection.Date.Format .Site.Params.dateform)}}</span>
|
|
<span class="button__icon">→</span>
|
|
</a>
|
|
</span>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }} |