├── .bowerrc ├── .editorconfig ├── .env.sample ├── .gitignore ├── .jshintrc ├── Gulpfile.js ├── assets ├── css │ └── style.css ├── js │ ├── components │ │ └── single-post.js │ ├── index.js │ ├── models │ │ ├── post.js │ │ ├── term.js │ │ └── user.js │ ├── routes │ │ ├── index.js │ │ ├── post.js │ │ ├── router.js │ │ ├── tag.js │ │ ├── term.js │ │ └── user.js │ └── services │ │ ├── adapter.js │ │ └── serializer.js └── templates │ ├── application.hbs │ ├── category.hbs │ ├── components │ └── single-post.hbs │ ├── index.hbs │ ├── loading.hbs │ ├── page.hbs │ ├── post.hbs │ ├── tag.hbs │ └── user.hbs ├── bower.json ├── index.html ├── license.md ├── package.json └── readme.md /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "assets/vendor" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/.jshintrc -------------------------------------------------------------------------------- /Gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/Gulpfile.js -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/js/components/single-post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/components/single-post.js -------------------------------------------------------------------------------- /assets/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/index.js -------------------------------------------------------------------------------- /assets/js/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/models/post.js -------------------------------------------------------------------------------- /assets/js/models/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/models/term.js -------------------------------------------------------------------------------- /assets/js/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/models/user.js -------------------------------------------------------------------------------- /assets/js/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/routes/index.js -------------------------------------------------------------------------------- /assets/js/routes/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/routes/post.js -------------------------------------------------------------------------------- /assets/js/routes/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/routes/router.js -------------------------------------------------------------------------------- /assets/js/routes/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/routes/tag.js -------------------------------------------------------------------------------- /assets/js/routes/term.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/routes/term.js -------------------------------------------------------------------------------- /assets/js/routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/routes/user.js -------------------------------------------------------------------------------- /assets/js/services/adapter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/services/adapter.js -------------------------------------------------------------------------------- /assets/js/services/serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/js/services/serializer.js -------------------------------------------------------------------------------- /assets/templates/application.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/templates/application.hbs -------------------------------------------------------------------------------- /assets/templates/category.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/templates/category.hbs -------------------------------------------------------------------------------- /assets/templates/components/single-post.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/templates/components/single-post.hbs -------------------------------------------------------------------------------- /assets/templates/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/templates/index.hbs -------------------------------------------------------------------------------- /assets/templates/loading.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/templates/loading.hbs -------------------------------------------------------------------------------- /assets/templates/page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/templates/page.hbs -------------------------------------------------------------------------------- /assets/templates/post.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/templates/post.hbs -------------------------------------------------------------------------------- /assets/templates/tag.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/templates/tag.hbs -------------------------------------------------------------------------------- /assets/templates/user.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/assets/templates/user.hbs -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/bower.json -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/index.html -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/license.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HeyHumanAgency/Ember-Data-WordPress/HEAD/readme.md --------------------------------------------------------------------------------