├── .babelrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── README.md ├── app ├── index.es5.js ├── index.js └── template │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitignore │ ├── LICENSE.txt │ ├── bower.json │ ├── gulp.config.js │ ├── gulpfile.js │ ├── package.json │ ├── src │ ├── humans.txt │ ├── img │ │ ├── images │ │ └── sprites │ │ │ └── sprites │ ├── index.html │ ├── js │ │ ├── main.js │ │ ├── plugins.js │ │ └── vendor │ │ │ └── plugin-example.js │ ├── robots.txt │ └── styl │ │ ├── base │ │ ├── base.styl │ │ ├── fonts.styl │ │ ├── forms.styl │ │ ├── generics.styl │ │ ├── mixins.styl │ │ ├── reset.styl │ │ └── variables.styl │ │ ├── layout │ │ ├── content.styl │ │ ├── footer.styl │ │ ├── form.styl │ │ ├── header.styl │ │ ├── layout.styl │ │ └── menu.styl │ │ ├── module │ │ ├── button.styl │ │ ├── module.styl │ │ ├── pagination.styl │ │ ├── search.styl │ │ └── slider.styl │ │ ├── state │ │ └── state.styl │ │ ├── styles.styl │ │ └── theme │ │ └── theme-abc.styl │ └── tasks │ ├── browser-sync.js │ ├── default.js │ ├── imagemin.js │ ├── move.js │ ├── scripts.js │ ├── server.js │ ├── sprites.js │ └── styles.js ├── gulp.config.js ├── gulpfile.js ├── package.json ├── scripts ├── test └── transpile ├── tasks ├── default.js ├── lint.js └── watch.js └── test └── unit ├── app.spec.es5.js └── app.spec.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015"] 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | coverage/ 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/README.md -------------------------------------------------------------------------------- /app/index.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/index.es5.js -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/index.js -------------------------------------------------------------------------------- /app/template/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory":"src/assets/" 3 | } 4 | -------------------------------------------------------------------------------- /app/template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/.editorconfig -------------------------------------------------------------------------------- /app/template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/.gitignore -------------------------------------------------------------------------------- /app/template/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/LICENSE.txt -------------------------------------------------------------------------------- /app/template/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/bower.json -------------------------------------------------------------------------------- /app/template/gulp.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/gulp.config.js -------------------------------------------------------------------------------- /app/template/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/gulpfile.js -------------------------------------------------------------------------------- /app/template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/package.json -------------------------------------------------------------------------------- /app/template/src/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/humans.txt -------------------------------------------------------------------------------- /app/template/src/img/images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/img/images -------------------------------------------------------------------------------- /app/template/src/img/sprites/sprites: -------------------------------------------------------------------------------- 1 | Put your images here to transform in Sprites 2 | -------------------------------------------------------------------------------- /app/template/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/index.html -------------------------------------------------------------------------------- /app/template/src/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/js/plugins.js -------------------------------------------------------------------------------- /app/template/src/js/vendor/plugin-example.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | console.log('Hello! ;D'); 3 | })(); 4 | -------------------------------------------------------------------------------- /app/template/src/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/robots.txt -------------------------------------------------------------------------------- /app/template/src/styl/base/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/styl/base/base.styl -------------------------------------------------------------------------------- /app/template/src/styl/base/fonts.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/styl/base/fonts.styl -------------------------------------------------------------------------------- /app/template/src/styl/base/forms.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/base/generics.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/base/mixins.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/base/reset.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/styl/base/reset.styl -------------------------------------------------------------------------------- /app/template/src/styl/base/variables.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/layout/content.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/layout/footer.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/layout/form.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/layout/header.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/layout/layout.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/styl/layout/layout.styl -------------------------------------------------------------------------------- /app/template/src/styl/layout/menu.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/module/button.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/module/module.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/styl/module/module.styl -------------------------------------------------------------------------------- /app/template/src/styl/module/pagination.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/module/search.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/module/slider.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/state/state.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/src/styl/styles.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/src/styl/styles.styl -------------------------------------------------------------------------------- /app/template/src/styl/theme/theme-abc.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/template/tasks/browser-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/tasks/browser-sync.js -------------------------------------------------------------------------------- /app/template/tasks/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/tasks/default.js -------------------------------------------------------------------------------- /app/template/tasks/imagemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/tasks/imagemin.js -------------------------------------------------------------------------------- /app/template/tasks/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/tasks/move.js -------------------------------------------------------------------------------- /app/template/tasks/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/tasks/scripts.js -------------------------------------------------------------------------------- /app/template/tasks/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/tasks/server.js -------------------------------------------------------------------------------- /app/template/tasks/sprites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/tasks/sprites.js -------------------------------------------------------------------------------- /app/template/tasks/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/app/template/tasks/styles.js -------------------------------------------------------------------------------- /gulp.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/gulp.config.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/package.json -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/transpile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/scripts/transpile -------------------------------------------------------------------------------- /tasks/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/tasks/default.js -------------------------------------------------------------------------------- /tasks/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/tasks/lint.js -------------------------------------------------------------------------------- /tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/tasks/watch.js -------------------------------------------------------------------------------- /test/unit/app.spec.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/test/unit/app.spec.es5.js -------------------------------------------------------------------------------- /test/unit/app.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woliveiras/kibe/HEAD/test/unit/app.spec.js --------------------------------------------------------------------------------