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

14 lines
477 B
HTML
Raw Normal View History

2023-09-18 18:24:49 +00:00
{{- $onempty := cond (isset . "onempty") .onempty "hide" }}
{{- $onwidths := cond (isset . "onwidths") .onwidths "show" }}
{{- $onwidthm := cond (isset . "onwidthm") .onwidthm "show" }}
{{- $onwidthl := cond (isset . "onwidthl") .onwidthl "show" }}
{{- partial "topbar/func/area-button.html" (dict
"page" .page
"area" "more"
"icon" "ellipsis-v"
"onempty" $onempty
"onwidths" $onwidths
"onwidthm" $onwidthm
"onwidthl" $onwidthl
2023-12-05 07:40:58 +00:00
"hint" (printf "%s" (T "More-action"))
2023-09-18 18:24:49 +00:00
)}}