├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── README.md ├── demo ├── .eslintrc ├── assets │ ├── css │ │ ├── app.css │ │ └── fontello.css │ └── font │ │ ├── fontello.eot │ │ ├── fontello.svg │ │ ├── fontello.ttf │ │ └── fontello.woff ├── data │ └── db.json ├── dist │ ├── assets │ │ └── js │ │ │ ├── app.js │ │ │ └── app.min.js │ └── config.json ├── gulpfile.js ├── index.html ├── package.json └── scripts │ ├── app │ ├── aboutme │ │ ├── sub │ │ │ └── tag.html │ │ └── tag.html │ ├── blog │ │ └── tag.html │ ├── book │ │ ├── index.js │ │ └── tag.html │ ├── dialog │ │ ├── index.js │ │ └── tag.html │ ├── navigator │ │ ├── index.js │ │ └── tag.html │ ├── setting │ │ └── tag.html │ ├── todo │ │ ├── index.js │ │ └── tag.html │ ├── todomvc │ │ ├── index.js │ │ └── tag.html │ └── viewport │ │ ├── index.js │ │ └── tag.html │ ├── main.js │ └── router.js ├── dist ├── cheft.js └── cheft.min.js ├── gulpfile.coffee ├── package.json ├── snapshot ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg └── demo.png └── src ├── cheft.coffee ├── cheft.js └── core ├── adapter.coffee ├── adapter.js ├── application.coffee ├── application.js ├── router.coffee ├── router.js ├── store.coffee └── store.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | bower_components 3 | demo 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/README.md -------------------------------------------------------------------------------- /demo/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/.eslintrc -------------------------------------------------------------------------------- /demo/assets/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/assets/css/app.css -------------------------------------------------------------------------------- /demo/assets/css/fontello.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/assets/css/fontello.css -------------------------------------------------------------------------------- /demo/assets/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/assets/font/fontello.eot -------------------------------------------------------------------------------- /demo/assets/font/fontello.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/assets/font/fontello.svg -------------------------------------------------------------------------------- /demo/assets/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/assets/font/fontello.ttf -------------------------------------------------------------------------------- /demo/assets/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/assets/font/fontello.woff -------------------------------------------------------------------------------- /demo/data/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/data/db.json -------------------------------------------------------------------------------- /demo/dist/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/dist/assets/js/app.js -------------------------------------------------------------------------------- /demo/dist/assets/js/app.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/dist/assets/js/app.min.js -------------------------------------------------------------------------------- /demo/dist/config.json: -------------------------------------------------------------------------------- 1 | {"urlRoot": "http://172.16.0.135:3000/"} -------------------------------------------------------------------------------- /demo/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/gulpfile.js -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/scripts/app/aboutme/sub/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/aboutme/sub/tag.html -------------------------------------------------------------------------------- /demo/scripts/app/aboutme/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/aboutme/tag.html -------------------------------------------------------------------------------- /demo/scripts/app/blog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/blog/tag.html -------------------------------------------------------------------------------- /demo/scripts/app/book/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/book/index.js -------------------------------------------------------------------------------- /demo/scripts/app/book/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/book/tag.html -------------------------------------------------------------------------------- /demo/scripts/app/dialog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/dialog/index.js -------------------------------------------------------------------------------- /demo/scripts/app/dialog/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/dialog/tag.html -------------------------------------------------------------------------------- /demo/scripts/app/navigator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/navigator/index.js -------------------------------------------------------------------------------- /demo/scripts/app/navigator/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/navigator/tag.html -------------------------------------------------------------------------------- /demo/scripts/app/setting/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/setting/tag.html -------------------------------------------------------------------------------- /demo/scripts/app/todo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/todo/index.js -------------------------------------------------------------------------------- /demo/scripts/app/todo/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/todo/tag.html -------------------------------------------------------------------------------- /demo/scripts/app/todomvc/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/todomvc/index.js -------------------------------------------------------------------------------- /demo/scripts/app/todomvc/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/todomvc/tag.html -------------------------------------------------------------------------------- /demo/scripts/app/viewport/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/viewport/index.js -------------------------------------------------------------------------------- /demo/scripts/app/viewport/tag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/app/viewport/tag.html -------------------------------------------------------------------------------- /demo/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/main.js -------------------------------------------------------------------------------- /demo/scripts/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/demo/scripts/router.js -------------------------------------------------------------------------------- /dist/cheft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/dist/cheft.js -------------------------------------------------------------------------------- /dist/cheft.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/dist/cheft.min.js -------------------------------------------------------------------------------- /gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/gulpfile.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/package.json -------------------------------------------------------------------------------- /snapshot/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/snapshot/1.jpg -------------------------------------------------------------------------------- /snapshot/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/snapshot/2.jpg -------------------------------------------------------------------------------- /snapshot/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/snapshot/3.jpg -------------------------------------------------------------------------------- /snapshot/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/snapshot/4.jpg -------------------------------------------------------------------------------- /snapshot/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/snapshot/5.jpg -------------------------------------------------------------------------------- /snapshot/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/snapshot/demo.png -------------------------------------------------------------------------------- /src/cheft.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/cheft.coffee -------------------------------------------------------------------------------- /src/cheft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/cheft.js -------------------------------------------------------------------------------- /src/core/adapter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/core/adapter.coffee -------------------------------------------------------------------------------- /src/core/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/core/adapter.js -------------------------------------------------------------------------------- /src/core/application.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/core/application.coffee -------------------------------------------------------------------------------- /src/core/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/core/application.js -------------------------------------------------------------------------------- /src/core/router.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/core/router.coffee -------------------------------------------------------------------------------- /src/core/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/core/router.js -------------------------------------------------------------------------------- /src/core/store.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/core/store.coffee -------------------------------------------------------------------------------- /src/core/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheft/riot-spa-template/HEAD/src/core/store.js --------------------------------------------------------------------------------