mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
35 lines
No EOL
1.1 KiB
HTML
35 lines
No EOL
1.1 KiB
HTML
{{- $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 "_relearn/pageIsSpecial.gotmpl" .) }}
|
|
{{- 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}") }}
|
|
{{- $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 }}
|
|
{{- end }}
|
|
{{- end }} |