├── .gitignore ├── README.md ├── package.json ├── tools ├── build.js └── r.js └── www ├── app.js ├── app ├── main.js └── messages.js ├── index.html └── lib ├── print.js └── require.js /.gitignore: -------------------------------------------------------------------------------- 1 | www-built 2 | www-ghpages -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/package.json -------------------------------------------------------------------------------- /tools/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/tools/build.js -------------------------------------------------------------------------------- /tools/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/tools/r.js -------------------------------------------------------------------------------- /www/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/www/app.js -------------------------------------------------------------------------------- /www/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/www/app/main.js -------------------------------------------------------------------------------- /www/app/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/www/app/messages.js -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/www/index.html -------------------------------------------------------------------------------- /www/lib/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/www/lib/print.js -------------------------------------------------------------------------------- /www/lib/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/volojs/create-template/HEAD/www/lib/require.js --------------------------------------------------------------------------------