├── .gitignore ├── LICENSE ├── README.md ├── doc.go ├── template.go └── template_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arschles/go-bindata-html-template/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arschles/go-bindata-html-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arschles/go-bindata-html-template/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arschles/go-bindata-html-template/HEAD/doc.go -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arschles/go-bindata-html-template/HEAD/template.go -------------------------------------------------------------------------------- /template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arschles/go-bindata-html-template/HEAD/template_test.go --------------------------------------------------------------------------------