2023-07-30 12:53:06 +01:00
|
|
|
{{/* Article navigation on the footer of the article */}}
|
|
|
|
|
2023-08-20 19:20:24 +01:00
|
|
|
{{- $reversePagination := .Scratch.Get "reversePagination" | default false -}}
|
2023-08-09 22:36:20 +01:00
|
|
|
|
|
|
|
{{- $prev := cond $reversePagination .PrevInSection .NextInSection -}}
|
|
|
|
{{- $next := cond $reversePagination .NextInSection .PrevInSection -}}
|
2023-08-20 19:20:24 +01:00
|
|
|
|
2023-10-05 04:13:49 +09:00
|
|
|
{{- if eq .Params.prev false }}
|
|
|
|
{{- if $reversePagination }}{{ $next = false }}{{ else }}{{ $prev = false }}{{ end -}}
|
|
|
|
{{ else }}
|
|
|
|
{{- with .Params.prev -}}
|
|
|
|
{{- with $.Site.GetPage . -}}
|
|
|
|
{{- if $reversePagination }}{{ $next = . }}{{ else }}{{ $prev = . }}{{ end -}}
|
|
|
|
{{- end -}}
|
2023-08-20 19:20:24 +01:00
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
2023-10-05 04:13:49 +09:00
|
|
|
{{- if eq .Params.next false }}
|
|
|
|
{{- if $reversePagination }}{{ $prev = false }}{{ else }}{{ $next = false }}{{ end -}}
|
|
|
|
{{ else }}
|
|
|
|
{{- with .Params.next -}}
|
|
|
|
{{- with $.Site.GetPage . -}}
|
|
|
|
{{- if $reversePagination }}{{ $prev = . }}{{ else }}{{ $next = . }}{{ end -}}
|
|
|
|
{{- end -}}
|
2023-08-20 19:20:24 +01:00
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
|
2023-07-30 12:53:06 +01:00
|
|
|
{{- if or $prev $next -}}
|
2025-03-29 12:51:42 +00:00
|
|
|
<div class="hx:mb-8 hx:flex hx:items-center hx:border-t hx:pt-8 hx:border-gray-200 hx:dark:border-neutral-800 hx:contrast-more:border-neutral-400 hx:dark:contrast-more:border-neutral-400 hx:print:hidden">
|
2023-07-30 12:53:06 +01:00
|
|
|
{{- if $prev -}}
|
2024-03-19 22:16:10 +00:00
|
|
|
{{- $linkTitle := partial "utils/title" $prev -}}
|
2023-08-27 17:32:44 +01:00
|
|
|
<a
|
|
|
|
href="{{ $prev.RelPermalink }}"
|
2024-03-19 22:16:10 +00:00
|
|
|
title="{{ $linkTitle }}"
|
2025-03-29 12:51:42 +00:00
|
|
|
class="hx:flex hx:max-w-[50%] hx:items-center hx:gap-1 hx:py-4 hx:text-base hx:font-medium hx:text-gray-600 hx:transition-colors [word-break:break-word] hx:hover:text-primary-600 hx:dark:text-gray-300 hx:md:text-lg hx:ltr:pr-4 hx:rtl:pl-4"
|
2023-08-27 17:32:44 +01:00
|
|
|
>
|
2025-03-29 12:51:42 +00:00
|
|
|
{{- partial "utils/icon.html" (dict "name" "chevron-right" "attributes" "class=\"hx:inline hx:h-5 hx:shrink-0 hx:ltr:rotate-180\"") -}}
|
2024-03-19 22:16:10 +00:00
|
|
|
{{- $linkTitle -}}
|
2023-07-30 12:53:06 +01:00
|
|
|
</a>
|
|
|
|
{{- end -}}
|
|
|
|
{{- if $next -}}
|
2024-03-19 22:16:10 +00:00
|
|
|
{{- $linkTitle := partial "utils/title" $next -}}
|
2023-08-27 17:32:44 +01:00
|
|
|
<a
|
|
|
|
href="{{ $next.RelPermalink }}"
|
2024-03-19 22:16:10 +00:00
|
|
|
title="{{ $linkTitle }}"
|
2025-03-29 12:51:42 +00:00
|
|
|
class="hx:flex hx:max-w-[50%] hx:items-center hx:gap-1 hx:py-4 hx:text-base hx:font-medium hx:text-gray-600 hx:transition-colors [word-break:break-word] hx:hover:text-primary-600 hx:dark:text-gray-300 hx:md:text-lg hx:ltr:ml-auto hx:ltr:pl-4 hx:ltr:text-right hx:rtl:mr-auto hx:rtl:pr-4 hx:rtl:text-left"
|
2023-08-27 17:32:44 +01:00
|
|
|
>
|
2024-03-19 22:16:10 +00:00
|
|
|
{{- $linkTitle -}}
|
2025-03-29 12:51:42 +00:00
|
|
|
{{- partial "utils/icon.html" (dict "name" "chevron-right" "attributes" "class=\"hx:inline hx:h-5 hx:shrink-0 hx:rtl:-rotate-180\"") -}}
|
2023-07-30 12:53:06 +01:00
|
|
|
</a>
|
|
|
|
{{- end -}}
|
|
|
|
</div>
|
|
|
|
{{- end -}}
|