wp-go/internal/theme/wp/template.gohtml
2023-03-01 13:17:12 +08:00

25 lines
463 B
Plaintext

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