wp-go/internal/theme/common/template.gohtml
2023-02-25 00:56:52 +08:00

19 lines
354 B
Plaintext

{{define "common/head"}}
{{if .customHeader}}
{{.customHeader|unescaped}}
{{end}}
{{if .headScript}}
{{.headScript|unescaped}}
{{end}}
{{if .externHead}}
{{.externHead|unescaped}}
{{end}}
{{end}}
{{define "common/customLogo"}}
{{if .customLogo}}
{{.customLogo|unescaped}}
{{end}}
{{end}}