hugo-theme-relearn/layouts/partials/topbar/button/next.html

24 lines
997 B
HTML
Raw Normal View History

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 }}
{{- $showPrevNext := (and (not .Params.disableNextPrev) (not .Site.Params.disableNextPrev)) }}
2024-04-07 19:41:06 +00:00
{{- if $showPrevNext }}
2023-09-18 18:24:49 +00:00
{{- $endarrow := "🡒" }}
{{- if eq (.Language.LanguageDirection | default (T "Reading-direction") | default "ltr") "rtl" }}
2023-09-18 18:24:49 +00:00
{{- $endarrow = "🡐" }}
{{- end }}
2024-09-07 22:12:10 +00:00
{{- $next := partialCached "_relearn/pageNext.gotmpl" . .Path }}
{{- $nextTitle := partial "title.gotmpl" (dict "page" $next "outputFormat" "html") }}
2023-09-18 18:24:49 +00:00
{{- partial "topbar/func/button.html" (dict
"page" .
"class" "topbar-button-next"
"href" (partial "permalink.gotmpl" (dict "to" $next))
2023-09-18 18:24:49 +00:00
"icon" "chevron-right"
"onwidths" $onwidths
"onwidthm" $onwidthm
"onwidthl" $onwidthl
"hint" (printf "%s (%s)" $nextTitle ($endarrow | safeHTML))
2023-09-18 18:24:49 +00:00
)}}
{{- end }}
{{- end }}