[Golang] gin模板渲染-公用的头部和底部
当使用gin进行模板渲染的时候
如果想要头部或者底部是公用的,那么可以这样做
比如模板部分
index.html
footer.html
index.html里面
{{template "footer" .}}
footer.html里面
{{define "footer"}}
当使用gin进行模板渲染的时候
如果想要头部或者底部是公用的,那么可以这样做
比如模板部分
index.html
footer.html
index.html里面
{{template "footer" .}}
footer.html里面
{{define "footer"}}