├── .bem └── templates │ └── bemjson.js ├── .bemrc ├── .editorconfig ├── .enb └── make.js ├── .gitignore ├── .travis.yml ├── README.md ├── README.ru.md ├── common.blocks └── .gitkeep ├── desktop.blocks └── .gitkeep ├── desktop.bundles └── index │ └── index.bemjson.js ├── favicon.ico ├── gulpfile.js └── package.json /.bem/templates/bemjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/.bem/templates/bemjson.js -------------------------------------------------------------------------------- /.bemrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/.bemrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/.editorconfig -------------------------------------------------------------------------------- /.enb/make.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/.enb/make.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/README.md -------------------------------------------------------------------------------- /README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/README.ru.md -------------------------------------------------------------------------------- /common.blocks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop.blocks/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /desktop.bundles/index/index.bemjson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/desktop.bundles/index/index.bemjson.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/favicon.ico -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bem/project-stub/HEAD/package.json --------------------------------------------------------------------------------