是否可以在 golang 中呈现多个具有相同名称的 html 模板。原因是,我想制作一个布局并将其重用于多个视图。例如:
{{define "MainLayout"}}
<html>
<head>
<title>{{.Title}}</title>
</head>
<body>
<div>{{template "Content" .}}</div>
</body>
</html>
{{end}}
内容可以是不同的模板,它们都由 {{define "Content"}} 定义