├── .gitignore ├── .travis.yml ├── Dockerfile ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README.md ├── config.go ├── config_test.go ├── main.go ├── main_test.go ├── pdfgen_suite_test.go ├── server_emulator.go ├── template.go ├── template_test.go └── templates ├── demo.json ├── demo.sh └── invoice ├── address.html ├── base.html ├── bower.json ├── footer.html ├── header.html ├── hyperboloide_banner.png ├── hyperboloide_square.png ├── index.html ├── lines.html └── title.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/README.md -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/config.go -------------------------------------------------------------------------------- /config_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/config_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/main_test.go -------------------------------------------------------------------------------- /pdfgen_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/pdfgen_suite_test.go -------------------------------------------------------------------------------- /server_emulator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/server_emulator.go -------------------------------------------------------------------------------- /template.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/template.go -------------------------------------------------------------------------------- /template_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/template_test.go -------------------------------------------------------------------------------- /templates/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/demo.json -------------------------------------------------------------------------------- /templates/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/demo.sh -------------------------------------------------------------------------------- /templates/invoice/address.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/address.html -------------------------------------------------------------------------------- /templates/invoice/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/base.html -------------------------------------------------------------------------------- /templates/invoice/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/bower.json -------------------------------------------------------------------------------- /templates/invoice/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/footer.html -------------------------------------------------------------------------------- /templates/invoice/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/header.html -------------------------------------------------------------------------------- /templates/invoice/hyperboloide_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/hyperboloide_banner.png -------------------------------------------------------------------------------- /templates/invoice/hyperboloide_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/hyperboloide_square.png -------------------------------------------------------------------------------- /templates/invoice/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/index.html -------------------------------------------------------------------------------- /templates/invoice/lines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/lines.html -------------------------------------------------------------------------------- /templates/invoice/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperboloide/pdfgen/HEAD/templates/invoice/title.html --------------------------------------------------------------------------------