mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
32 lines
No EOL
1.4 KiB
HTML
32 lines
No EOL
1.4 KiB
HTML
{{- $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 }}
|
|
{{- $startarrow := "🡐" }}
|
|
{{- if eq (.Language.LanguageDirection | default (T "Reading-direction") | default "ltr") "rtl" }}
|
|
{{- $startarrow = "🡒" }}
|
|
{{- end }}
|
|
{{- $prev := .Scratch.Get "relearnPrevPage" }}
|
|
{{- if eq .Page.Kind "term" }}
|
|
{{- /* go to previous term page or taxonomy page if it is the first term */}}
|
|
{{- $taxonomy_page := .Site.GetPage .Data.Plural }}
|
|
{{- $pages := partialCached "partials/pageHelper/taxonomyPages.html" $taxonomy_page $taxonomy_page }}
|
|
{{- $prev = partial "partials/pageHelper/prev.html" (dict "collection" $pages "item" .) | default $taxonomy_page }}
|
|
{{- else if eq .Page.Kind "taxonomy" }}
|
|
{{- $prev = .Site.Home }}
|
|
{{- end }}
|
|
{{- $prevTitle := partial "pageHelper/title.hugo" (dict "page" $prev "outputFormat" "html") }}
|
|
{{- partial "topbar/func/button.html" (dict
|
|
"page" .
|
|
"class" "topbar-button-prev"
|
|
"href" (partial "relLangPrettyUglyURL.hugo" (dict "to" $prev))
|
|
"icon" "chevron-left"
|
|
"onwidths" $onwidths
|
|
"onwidthm" $onwidthm
|
|
"onwidthl" $onwidthl
|
|
"hint" (printf "%s (%s)" $prevTitle ($startarrow | safeHTML))
|
|
)}}
|
|
{{- end }}
|
|
{{- end }} |