├── .gitignore ├── .jshintrc ├── .travis.yml ├── LICENSE ├── README.md ├── gulpfile.js ├── index.js ├── lib ├── ejs.js └── templates.js ├── package.json └── test ├── fixtures ├── header.html ├── user-list.html └── user.html ├── index.js └── templates.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/index.js -------------------------------------------------------------------------------- /lib/ejs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/lib/ejs.js -------------------------------------------------------------------------------- /lib/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/lib/templates.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/test/fixtures/header.html -------------------------------------------------------------------------------- /test/fixtures/user-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alibaba-archive/gulp-ejs-template/HEAD/test/fixtures/user-list.html -------------------------------------------------------------------------------- /test/fixtures/user.html: -------------------------------------------------------------------------------- 1 |