{{- $onwidths := cond (isset . "onwidths") .onwidths "show" }} {{- $onwidthm := cond (isset . "onwidthm") .onwidthm "show" }} {{- $onwidthl := cond (isset . "onwidthl") .onwidthl "show" }} {{- with .page }} {{- $showPrevNext := (and (not .Params.disableNextPrev) (not .Site.Params.disableNextPrev)) }} {{- if $showPrevNext }} {{- $endarrow := "🡒" }} {{- if eq (.Language.LanguageDirection | default (T "Reading-direction") | default "ltr") "rtl" }} {{- $endarrow = "🡐" }} {{- end }} {{- $next := .Scratch.Get "relearnNextPage" }} {{- if eq .Page.Kind "term" }} {{- /* go to next term page */}} {{- $taxonomy_page := .Site.GetPage .Data.Plural }} {{- $pages := partialCached "partials/_relearn/pagesTaxonomy.gotmpl" $taxonomy_page $taxonomy_page.Path }} {{- $next = partial "partials/_relearn/pageNext.gotmpl" (dict "collection" $pages "item" .) }} {{- else if eq .Page.Kind "taxonomy" }} {{- /* go to first term page */}} {{- $pages := partialCached "partials/_relearn/pagesTaxonomy.gotmpl" . .Path }} {{- $next = (index $pages 0).Page }} {{- end }} {{- $nextTitle := partial "title.gotmpl" (dict "page" $next "outputFormat" "html") }} {{- partial "topbar/func/button.html" (dict "page" . "class" "topbar-button-next" "href" (partial "permalink.gotmpl" (dict "to" $next)) "icon" "chevron-right" "onwidths" $onwidths "onwidthm" $onwidthm "onwidthl" $onwidthl "hint" (printf "%s (%s)" $nextTitle ($endarrow | safeHTML)) )}} {{- end }} {{- end }}