HTMLのテンプレートでパスの配下を複数指定したい場合の書き方
templateList, err := template.New("t").ParseGlob("template/*.tpl")
templateList.ParseGlob("template/parts/*.tpl")
ファイルのリストはポインタで管理されているので、追記していくだけで利用可能になる
参考
https://golang.org/pkg/text/template/
https://github.com/golang/go/blob/master/src/html/template/template.go