├── .gitignore ├── LICENSE ├── README.md ├── index.html ├── list.php ├── scripts ├── bootstrap-responsive.min.css ├── bootstrap.min.css ├── handlebars-v4.0.5.mod.js ├── jquery-3.1.1.min.js ├── main.js ├── strapdown.mod.css └── strapdown.mod.js └── tpls └── example-report.md /.gitignore: -------------------------------------------------------------------------------- 1 | tpls/*.md 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/index.html -------------------------------------------------------------------------------- /list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/list.php -------------------------------------------------------------------------------- /scripts/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/scripts/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /scripts/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/scripts/bootstrap.min.css -------------------------------------------------------------------------------- /scripts/handlebars-v4.0.5.mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/scripts/handlebars-v4.0.5.mod.js -------------------------------------------------------------------------------- /scripts/jquery-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/scripts/jquery-3.1.1.min.js -------------------------------------------------------------------------------- /scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/scripts/main.js -------------------------------------------------------------------------------- /scripts/strapdown.mod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/scripts/strapdown.mod.css -------------------------------------------------------------------------------- /scripts/strapdown.mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/scripts/strapdown.mod.js -------------------------------------------------------------------------------- /tpls/example-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fransr/template-generator/HEAD/tpls/example-report.md --------------------------------------------------------------------------------