mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
22 lines
No EOL
718 B
HTML
22 lines
No EOL
718 B
HTML
{{- $onwidths := cond (isset . "onwidths") .onwidths "area-more" }}
|
|
{{- $onwidthm := cond (isset . "onwidthm") .onwidthm "show" }}
|
|
{{- $onwidthl := cond (isset . "onwidthl") .onwidthl "show" }}
|
|
{{- with .page }}
|
|
{{- $printFormat := .OutputFormats.Get "print" }}
|
|
{{- $show := $printFormat }}
|
|
{{- if $show }}
|
|
{{- $show = not (partial "pageHelper/isRelearnSpecialPage.html" .) }}
|
|
{{- end }}
|
|
{{- if $show }}
|
|
{{- partial "topbar/func/button.html" (dict
|
|
"page" .
|
|
"class" "topbar-button-print"
|
|
"href" $printFormat.RelPermalink
|
|
"icon" "print"
|
|
"onwidths" $onwidths
|
|
"onwidthm" $onwidthm
|
|
"onwidthl" $onwidthl
|
|
"hint" (printf "%s (CTRL+ALT+p)" (T "Print-this-chapter"))
|
|
)}}
|
|
{{- end }}
|
|
{{- end }} |