├── .editorconfig ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── generator.sublime-project ├── package.json └── src ├── docs ├── how-to │ ├── how-to-de.js │ ├── how-to-en.js │ ├── how-to-es.js │ ├── how-to-fr.js │ └── how-to-it.js ├── raw-data │ ├── raw-data-de.js │ ├── raw-data-en.js │ ├── raw-data-es.js │ ├── raw-data-fr.js │ └── raw-data-it.js └── save-state │ ├── save-state-de.js │ ├── save-state-en.js │ ├── save-state-es.js │ ├── save-state-fr.js │ └── save-state-it.js ├── fonts ├── LICENSES ├── fontawesome-webfont-subset.eot ├── fontawesome-webfont-subset.otf ├── fontawesome-webfont-subset.svg ├── fontawesome-webfont-subset.ttf ├── fontawesome-webfont-subset.woff ├── fontawesome-webfont-subset.woff2 ├── opensans-bold.eot ├── opensans-bold.otf ├── opensans-bold.svg ├── opensans-bold.ttf ├── opensans-bold.woff ├── opensans-bold.woff2 ├── opensans-regular.eot ├── opensans-regular.otf ├── opensans-regular.svg ├── opensans-regular.ttf ├── opensans-regular.woff └── opensans-regular.woff2 ├── js ├── bootstrap-datepicker.js ├── bootstrap3-typeahead.js ├── generator.js ├── multiline.js ├── parse-data.js └── table-dnd.js ├── lang ├── de.txt ├── en.txt ├── es.txt ├── fr.txt └── it.txt ├── libs ├── bootstrap.min.js └── jquery.min.js ├── sass ├── generator.scss └── partials │ ├── _bootstrap.scss │ ├── _datepicker.scss │ └── _invoice.print.scss └── template ├── data.js ├── data.txt ├── mobile.scss ├── print.css ├── template.html ├── template.scss └── themes ├── _alice.scss ├── _cananista.scss ├── _elegance.scss ├── _modesta.scss ├── _morelo.scss └── _onyx.scss /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/README.md -------------------------------------------------------------------------------- /generator.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/generator.sublime-project -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/package.json -------------------------------------------------------------------------------- /src/docs/how-to/how-to-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/how-to/how-to-de.js -------------------------------------------------------------------------------- /src/docs/how-to/how-to-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/how-to/how-to-en.js -------------------------------------------------------------------------------- /src/docs/how-to/how-to-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/how-to/how-to-es.js -------------------------------------------------------------------------------- /src/docs/how-to/how-to-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/how-to/how-to-fr.js -------------------------------------------------------------------------------- /src/docs/how-to/how-to-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/how-to/how-to-it.js -------------------------------------------------------------------------------- /src/docs/raw-data/raw-data-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/raw-data/raw-data-de.js -------------------------------------------------------------------------------- /src/docs/raw-data/raw-data-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/raw-data/raw-data-en.js -------------------------------------------------------------------------------- /src/docs/raw-data/raw-data-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/raw-data/raw-data-es.js -------------------------------------------------------------------------------- /src/docs/raw-data/raw-data-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/raw-data/raw-data-fr.js -------------------------------------------------------------------------------- /src/docs/raw-data/raw-data-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/raw-data/raw-data-it.js -------------------------------------------------------------------------------- /src/docs/save-state/save-state-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/save-state/save-state-de.js -------------------------------------------------------------------------------- /src/docs/save-state/save-state-en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/save-state/save-state-en.js -------------------------------------------------------------------------------- /src/docs/save-state/save-state-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/save-state/save-state-es.js -------------------------------------------------------------------------------- /src/docs/save-state/save-state-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/save-state/save-state-fr.js -------------------------------------------------------------------------------- /src/docs/save-state/save-state-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/docs/save-state/save-state-it.js -------------------------------------------------------------------------------- /src/fonts/LICENSES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/LICENSES -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont-subset.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/fontawesome-webfont-subset.eot -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont-subset.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/fontawesome-webfont-subset.otf -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont-subset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/fontawesome-webfont-subset.svg -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont-subset.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/fontawesome-webfont-subset.ttf -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont-subset.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/fontawesome-webfont-subset.woff -------------------------------------------------------------------------------- /src/fonts/fontawesome-webfont-subset.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/fontawesome-webfont-subset.woff2 -------------------------------------------------------------------------------- /src/fonts/opensans-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-bold.eot -------------------------------------------------------------------------------- /src/fonts/opensans-bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-bold.otf -------------------------------------------------------------------------------- /src/fonts/opensans-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-bold.svg -------------------------------------------------------------------------------- /src/fonts/opensans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-bold.ttf -------------------------------------------------------------------------------- /src/fonts/opensans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-bold.woff -------------------------------------------------------------------------------- /src/fonts/opensans-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-bold.woff2 -------------------------------------------------------------------------------- /src/fonts/opensans-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-regular.eot -------------------------------------------------------------------------------- /src/fonts/opensans-regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-regular.otf -------------------------------------------------------------------------------- /src/fonts/opensans-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-regular.svg -------------------------------------------------------------------------------- /src/fonts/opensans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-regular.ttf -------------------------------------------------------------------------------- /src/fonts/opensans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-regular.woff -------------------------------------------------------------------------------- /src/fonts/opensans-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/fonts/opensans-regular.woff2 -------------------------------------------------------------------------------- /src/js/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/js/bootstrap-datepicker.js -------------------------------------------------------------------------------- /src/js/bootstrap3-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/js/bootstrap3-typeahead.js -------------------------------------------------------------------------------- /src/js/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/js/generator.js -------------------------------------------------------------------------------- /src/js/multiline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/js/multiline.js -------------------------------------------------------------------------------- /src/js/parse-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/js/parse-data.js -------------------------------------------------------------------------------- /src/js/table-dnd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/js/table-dnd.js -------------------------------------------------------------------------------- /src/lang/de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/lang/de.txt -------------------------------------------------------------------------------- /src/lang/en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/lang/en.txt -------------------------------------------------------------------------------- /src/lang/es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/lang/es.txt -------------------------------------------------------------------------------- /src/lang/fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/lang/fr.txt -------------------------------------------------------------------------------- /src/lang/it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/lang/it.txt -------------------------------------------------------------------------------- /src/libs/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/libs/bootstrap.min.js -------------------------------------------------------------------------------- /src/libs/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/libs/jquery.min.js -------------------------------------------------------------------------------- /src/sass/generator.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/sass/generator.scss -------------------------------------------------------------------------------- /src/sass/partials/_bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/sass/partials/_bootstrap.scss -------------------------------------------------------------------------------- /src/sass/partials/_datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/sass/partials/_datepicker.scss -------------------------------------------------------------------------------- /src/sass/partials/_invoice.print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/sass/partials/_invoice.print.scss -------------------------------------------------------------------------------- /src/template/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/data.js -------------------------------------------------------------------------------- /src/template/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/data.txt -------------------------------------------------------------------------------- /src/template/mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/mobile.scss -------------------------------------------------------------------------------- /src/template/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/print.css -------------------------------------------------------------------------------- /src/template/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/template.html -------------------------------------------------------------------------------- /src/template/template.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/template.scss -------------------------------------------------------------------------------- /src/template/themes/_alice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/themes/_alice.scss -------------------------------------------------------------------------------- /src/template/themes/_cananista.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/themes/_cananista.scss -------------------------------------------------------------------------------- /src/template/themes/_elegance.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/themes/_elegance.scss -------------------------------------------------------------------------------- /src/template/themes/_modesta.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/themes/_modesta.scss -------------------------------------------------------------------------------- /src/template/themes/_morelo.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/themes/_morelo.scss -------------------------------------------------------------------------------- /src/template/themes/_onyx.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Invoicebus/html-invoice-generator/HEAD/src/template/themes/_onyx.scss --------------------------------------------------------------------------------