├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── batman.jpg ├── index.js ├── invoice.jpg ├── invoice.pdf ├── package.json └── templates └── default ├── body.pug ├── css ├── foundation.min.css └── style.css ├── fonts ├── Envy-Code-R.ttf └── Lato-Regular.ttf └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/README.md -------------------------------------------------------------------------------- /batman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/batman.jpg -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/index.js -------------------------------------------------------------------------------- /invoice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/invoice.jpg -------------------------------------------------------------------------------- /invoice.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/invoice.pdf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/package.json -------------------------------------------------------------------------------- /templates/default/body.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/templates/default/body.pug -------------------------------------------------------------------------------- /templates/default/css/foundation.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/templates/default/css/foundation.min.css -------------------------------------------------------------------------------- /templates/default/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/templates/default/css/style.css -------------------------------------------------------------------------------- /templates/default/fonts/Envy-Code-R.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/templates/default/fonts/Envy-Code-R.ttf -------------------------------------------------------------------------------- /templates/default/fonts/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/templates/default/fonts/Lato-Regular.ttf -------------------------------------------------------------------------------- /templates/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonathanasquier/stripe-pdf-invoice/HEAD/templates/default/index.js --------------------------------------------------------------------------------