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

35 lines
1.1 KiB
HTML
Raw Normal View History

2023-09-18 18:24:49 +00:00
{{- $onwidths := cond (isset . "onwidths") .onwidths "area-more" }}
{{- $onwidthm := cond (isset . "onwidthm") .onwidthm "show" }}
{{- $onwidthl := cond (isset . "onwidthl") .onwidthl "show" }}
{{- with .page }}
{{- $show := .File }}
{{- if $show }}
{{- $show = not (partial "pageHelper/isRelearnSpecialPage.html" .) }}
{{- end }}
{{- if $show }}
{{- $filePath := printf "%s%s" (strings.TrimLeft "/" (replace .File.Dir "\\" "/")) .File.LogicalName }}
{{- $href := "" }}
{{- if .Site.Params.editURL }}
{{- $href = .Site.Params.editURL }}
{{- if not (strings.Contains $href "${FilePath}") }}
2024-08-28 22:33:11 +00:00
{{- $href = printf "%s%s" $href "${FilePath}" }}
{{- end }}
{{- end }}
{{- if isset .Params "editurl" }}
{{- $href = .Params.editURL }}
{{- end }}
{{- $href = strings.Replace $href "${FilePath}" $filePath }}
{{- if $href }}
{{- partial "topbar/func/button.html" (dict
"page" .
"class" "topbar-button-edit"
"href" $href
"icon" "pen"
"onwidths" $onwidths
"onwidthm" $onwidthm
"onwidthl" $onwidthl
"hint" (printf "%s (CTRL+ALT+w)" (T "Edit-this-page"))
)}}
{{- end }}
2023-09-18 18:24:49 +00:00
{{- end }}
{{- end }}