wp-go/app/theme/wp/template.gohtml
2023-05-04 20:37:06 +08:00

23 lines
404 B
Plaintext

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