2021-08-15 01:21:37 +00:00
|
|
|
{{ if .Params.showPagination | default (.Site.Params.article.showPagination | default true) }}
|
2021-08-14 04:44:34 +00:00
|
|
|
{{ if or .NextInSection .PrevInSection }}
|
2021-08-18 02:54:18 +00:00
|
|
|
<div class="pt-8 article-pagination">
|
2021-08-20 07:02:08 +00:00
|
|
|
<hr class="border-dotted border-neutral-300 dark:border-neutral-600" />
|
2021-08-14 04:44:34 +00:00
|
|
|
<div class="flex justify-between pt-3">
|
|
|
|
<span>
|
|
|
|
{{ if .NextInSection }}
|
|
|
|
<a class="flex" href="{{ .NextInSection.Permalink }}">
|
2021-08-18 02:54:18 +00:00
|
|
|
<span class="mr-3 article-pagination-direction">←</span>
|
2021-08-14 04:44:34 +00:00
|
|
|
<span class="flex flex-col">
|
2021-08-18 02:54:18 +00:00
|
|
|
<span class="article-pagination-title">{{ .NextInSection.Title }}</span>
|
2021-08-16 04:05:46 +00:00
|
|
|
{{ if .Params.showDate | default (.Site.Params.article.showDate | default true) }}
|
2021-08-14 04:44:34 +00:00
|
|
|
<time
|
2021-08-20 07:02:08 +00:00
|
|
|
class="-mt-1 text-xs text-neutral-400 dark:text-neutral-500"
|
2021-08-14 04:44:34 +00:00
|
|
|
datetime="{{ .Date }}"
|
|
|
|
>
|
|
|
|
{{ .Date.Format .Site.Params.article.dateFormat | default "2 January 2006" }}
|
|
|
|
</time>
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
{{ if .PrevInSection }}
|
|
|
|
<a class="flex text-right" href="{{ .PrevInSection.Permalink }}">
|
|
|
|
<span class="flex flex-col">
|
2021-08-18 02:54:18 +00:00
|
|
|
<span class="article-pagination-title">{{ .PrevInSection.Title }}</span>
|
2021-08-16 04:05:46 +00:00
|
|
|
{{ if .Params.showDate | default (.Site.Params.article.showDate | default true) }}
|
2021-08-14 04:44:34 +00:00
|
|
|
<time
|
2021-08-20 07:02:08 +00:00
|
|
|
class="-mt-1 text-xs text-neutral-400 dark:text-neutral-500"
|
2021-08-14 04:44:34 +00:00
|
|
|
datetime="{{ .Date }}"
|
|
|
|
>
|
|
|
|
{{ .Date.Format .Site.Params.article.dateFormat | default "2 January 2006" }}
|
|
|
|
</time>
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
2021-08-18 02:54:18 +00:00
|
|
|
<span class="ml-3 article-pagination-direction">→</span>
|
2021-08-14 04:44:34 +00:00
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|