wp-go/internal/theme/common/template.gohtml

21 lines
416 B
Plaintext
Raw Normal View History

2023-02-16 16:20:38 +00:00
{{define "common/head"}}
{{if .customHeader}}
{{.customHeader|unescaped}}
{{end}}
{{if .siteIcon}}
{{.siteIcon|unescaped}}
{{end}}
{{if .customCss}}
{{.customCss|unescaped}}
{{end}}
2023-02-18 15:35:39 +00:00
{{if .externHead}}
{{.externHead|unescaped}}
{{end}}
2023-02-16 16:20:38 +00:00
{{end}}
{{define "common/customLogo"}}
{{if .customLogo}}
{{.customLogo|unescaped}}
{{end}}
{{end}}