2023-09-18 18:24:49 +00:00
|
|
|
{{- $onwidths := cond (isset . "onwidths") .onwidths "show" }}
|
|
|
|
{{- $onwidthm := cond (isset . "onwidthm") .onwidthm "show" }}
|
|
|
|
{{- $onwidthl := cond (isset . "onwidthl") .onwidthl "show" }}
|
|
|
|
{{- with .page }}
|
|
|
|
{{- $format := partial "get-format.hugo" . }}
|
|
|
|
{{- $outputFormat := partial "output-format.hugo" (dict "page" . "format" $format) }}
|
|
|
|
{{- $showPrevNext := (and (not .Params.disableNextPrev) (not .Site.Params.disableNextPrev)) }}
|
|
|
|
{{- if and (or (eq $outputFormat "html") (eq $outputFormat "searchpage")) $showPrevNext }}
|
|
|
|
{{- $endarrow := "🡒" }}
|
2023-11-28 20:39:50 +00:00
|
|
|
{{- if eq (.Language.LanguageDirection | default (T "Reading-direction") | default "ltr") "rtl" }}
|
2023-09-18 18:24:49 +00:00
|
|
|
{{- $endarrow = "🡐" }}
|
|
|
|
{{- end }}
|
|
|
|
{{- $next := "" }}
|
2023-12-01 00:03:51 +00:00
|
|
|
{{- if eq .Page.Kind "taxonomy" }}
|
|
|
|
{{- /* go to first term page */}}
|
|
|
|
{{- $pages := partialCached "partials/pageHelper/taxonomyPages.html" . . }}
|
2023-12-01 20:36:58 +00:00
|
|
|
{{- $next = (index $pages 0).Page }}
|
2023-12-01 00:03:51 +00:00
|
|
|
{{- else if eq .Page.Kind "term" }}
|
|
|
|
{{- /* go to next term page */}}
|
|
|
|
{{- $taxonomy_page := .Site.GetPage .Data.Plural }}
|
|
|
|
{{- $pages := partialCached "partials/pageHelper/taxonomyPages.html" $taxonomy_page $taxonomy_page }}
|
|
|
|
{{- $next = partial "partials/pageHelper/next.html" (dict "collection" $pages "item" .) }}
|
|
|
|
{{- else if or (ne $outputFormat "html") (not (.Scratch.Get "relearnNextPage")) }}
|
2023-09-18 18:24:49 +00:00
|
|
|
{{- else }}
|
|
|
|
{{- $next = .Scratch.Get "relearnNextPage" }}
|
|
|
|
{{- end }}
|
|
|
|
{{- partial "topbar/func/button.html" (dict
|
|
|
|
"page" .
|
|
|
|
"class" "topbar-button-next"
|
|
|
|
"href" (partial "relLangPrettyUglyURL.hugo" (dict "to" $next))
|
|
|
|
"icon" "chevron-right"
|
|
|
|
"onwidths" $onwidths
|
|
|
|
"onwidthm" $onwidthm
|
|
|
|
"onwidthl" $onwidthl
|
2023-12-05 07:40:58 +00:00
|
|
|
"hint" (printf "%s (%s)" ($next | default .).Title ($endarrow | safeHTML))
|
2023-09-18 18:24:49 +00:00
|
|
|
)}}
|
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|