├── .bowerrc ├── .editorconfig ├── .gitignore ├── .jscsrc ├── .jshintrc ├── LICENSE ├── README.md ├── bower.json ├── dist ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── index.html ├── scripts │ ├── app-69474724.js │ ├── app-cb669473.js │ ├── app-d59e8949.js │ └── vendor-3580580c.js └── styles │ └── app-58cf2782.css ├── gulpfile.js ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── index.js │ ├── index.scss │ ├── modules │ │ ├── common │ │ │ ├── common.js │ │ │ ├── common.module.js │ │ │ ├── modal │ │ │ │ ├── modal.html │ │ │ │ └── modal.js │ │ │ ├── notifications.js │ │ │ └── widget │ │ │ │ └── widget.js │ │ ├── core │ │ │ ├── app.html │ │ │ ├── config.js │ │ │ ├── core.js │ │ │ ├── core.module.js │ │ │ └── navigation │ │ │ │ ├── navbar.html │ │ │ │ ├── navigation.js │ │ │ │ └── sidebar.html │ │ ├── dashboard │ │ │ ├── dash_users │ │ │ │ └── dash_users.html │ │ │ ├── dashboard.html │ │ │ ├── dashboard.js │ │ │ ├── dashboard.module.js │ │ │ └── widget-stat │ │ │ │ ├── widget.js │ │ │ │ └── widget_stat.html │ │ ├── data │ │ │ ├── data.module.js │ │ │ └── posts.js │ │ ├── flickr │ │ │ ├── flickr.html │ │ │ ├── flickr.js │ │ │ └── flickr.module.js │ │ ├── post │ │ │ ├── delete_post_modal.js │ │ │ ├── edit │ │ │ │ ├── edit.html │ │ │ │ └── edit.js │ │ │ ├── list │ │ │ │ ├── posts.html │ │ │ │ └── posts.js │ │ │ └── post.module.js │ │ └── profile │ │ │ ├── auth │ │ │ ├── auth.js │ │ │ └── login.html │ │ │ ├── edit │ │ │ ├── edit.html │ │ │ └── edit.js │ │ │ └── profile.module.js │ └── theme │ │ ├── _dashboard.scss │ │ ├── _layout.scss │ │ ├── _login.scss │ │ ├── _navigation.scss │ │ ├── _override-bootstrap.scss │ │ ├── _posts.scss │ │ ├── _utils.scss │ │ ├── _validation.scss │ │ └── _variables.scss └── index.html ├── srv.conf.js ├── srv ├── app.js ├── data.js ├── data │ └── stubs │ │ ├── posts.js │ │ └── users.js ├── package.json ├── routes │ ├── auth.js │ ├── posts.js │ └── profiles.js ├── session.js └── util.js └── tests ├── e2e └── example.main.spec.js └── spec └── example.controller.spec.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/.gitignore -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/bower.json -------------------------------------------------------------------------------- /dist/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dist/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /dist/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dist/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/index.html -------------------------------------------------------------------------------- /dist/scripts/app-69474724.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/scripts/app-69474724.js -------------------------------------------------------------------------------- /dist/scripts/app-cb669473.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/scripts/app-cb669473.js -------------------------------------------------------------------------------- /dist/scripts/app-d59e8949.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/scripts/app-d59e8949.js -------------------------------------------------------------------------------- /dist/scripts/vendor-3580580c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/scripts/vendor-3580580c.js -------------------------------------------------------------------------------- /dist/styles/app-58cf2782.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/dist/styles/app-58cf2782.css -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/gulpfile.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/index.js -------------------------------------------------------------------------------- /src/app/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/index.scss -------------------------------------------------------------------------------- /src/app/modules/common/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/common/common.js -------------------------------------------------------------------------------- /src/app/modules/common/common.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/common/common.module.js -------------------------------------------------------------------------------- /src/app/modules/common/modal/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/common/modal/modal.html -------------------------------------------------------------------------------- /src/app/modules/common/modal/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/common/modal/modal.js -------------------------------------------------------------------------------- /src/app/modules/common/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/common/notifications.js -------------------------------------------------------------------------------- /src/app/modules/common/widget/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/common/widget/widget.js -------------------------------------------------------------------------------- /src/app/modules/core/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/core/app.html -------------------------------------------------------------------------------- /src/app/modules/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/core/config.js -------------------------------------------------------------------------------- /src/app/modules/core/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/core/core.js -------------------------------------------------------------------------------- /src/app/modules/core/core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/core/core.module.js -------------------------------------------------------------------------------- /src/app/modules/core/navigation/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/core/navigation/navbar.html -------------------------------------------------------------------------------- /src/app/modules/core/navigation/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/core/navigation/navigation.js -------------------------------------------------------------------------------- /src/app/modules/core/navigation/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/core/navigation/sidebar.html -------------------------------------------------------------------------------- /src/app/modules/dashboard/dash_users/dash_users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/dashboard/dash_users/dash_users.html -------------------------------------------------------------------------------- /src/app/modules/dashboard/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/dashboard/dashboard.html -------------------------------------------------------------------------------- /src/app/modules/dashboard/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/dashboard/dashboard.js -------------------------------------------------------------------------------- /src/app/modules/dashboard/dashboard.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/dashboard/dashboard.module.js -------------------------------------------------------------------------------- /src/app/modules/dashboard/widget-stat/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/dashboard/widget-stat/widget.js -------------------------------------------------------------------------------- /src/app/modules/dashboard/widget-stat/widget_stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/dashboard/widget-stat/widget_stat.html -------------------------------------------------------------------------------- /src/app/modules/data/data.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/data/data.module.js -------------------------------------------------------------------------------- /src/app/modules/data/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/data/posts.js -------------------------------------------------------------------------------- /src/app/modules/flickr/flickr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/flickr/flickr.html -------------------------------------------------------------------------------- /src/app/modules/flickr/flickr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/flickr/flickr.js -------------------------------------------------------------------------------- /src/app/modules/flickr/flickr.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/flickr/flickr.module.js -------------------------------------------------------------------------------- /src/app/modules/post/delete_post_modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/post/delete_post_modal.js -------------------------------------------------------------------------------- /src/app/modules/post/edit/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/post/edit/edit.html -------------------------------------------------------------------------------- /src/app/modules/post/edit/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/post/edit/edit.js -------------------------------------------------------------------------------- /src/app/modules/post/list/posts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/post/list/posts.html -------------------------------------------------------------------------------- /src/app/modules/post/list/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/post/list/posts.js -------------------------------------------------------------------------------- /src/app/modules/post/post.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/post/post.module.js -------------------------------------------------------------------------------- /src/app/modules/profile/auth/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/profile/auth/auth.js -------------------------------------------------------------------------------- /src/app/modules/profile/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/profile/auth/login.html -------------------------------------------------------------------------------- /src/app/modules/profile/edit/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/profile/edit/edit.html -------------------------------------------------------------------------------- /src/app/modules/profile/edit/edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/profile/edit/edit.js -------------------------------------------------------------------------------- /src/app/modules/profile/profile.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/modules/profile/profile.module.js -------------------------------------------------------------------------------- /src/app/theme/_dashboard.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/theme/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/theme/_layout.scss -------------------------------------------------------------------------------- /src/app/theme/_login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/theme/_login.scss -------------------------------------------------------------------------------- /src/app/theme/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/theme/_navigation.scss -------------------------------------------------------------------------------- /src/app/theme/_override-bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/theme/_override-bootstrap.scss -------------------------------------------------------------------------------- /src/app/theme/_posts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/theme/_posts.scss -------------------------------------------------------------------------------- /src/app/theme/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/theme/_utils.scss -------------------------------------------------------------------------------- /src/app/theme/_validation.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/app/theme/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/app/theme/_variables.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/src/index.html -------------------------------------------------------------------------------- /srv.conf.js: -------------------------------------------------------------------------------- 1 | exports.config = { 2 | instance: 'localhost:4300' 3 | }; 4 | -------------------------------------------------------------------------------- /srv/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/app.js -------------------------------------------------------------------------------- /srv/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/data.js -------------------------------------------------------------------------------- /srv/data/stubs/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/data/stubs/posts.js -------------------------------------------------------------------------------- /srv/data/stubs/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/data/stubs/users.js -------------------------------------------------------------------------------- /srv/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/package.json -------------------------------------------------------------------------------- /srv/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/routes/auth.js -------------------------------------------------------------------------------- /srv/routes/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/routes/posts.js -------------------------------------------------------------------------------- /srv/routes/profiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/routes/profiles.js -------------------------------------------------------------------------------- /srv/session.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/session.js -------------------------------------------------------------------------------- /srv/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/srv/util.js -------------------------------------------------------------------------------- /tests/e2e/example.main.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/tests/e2e/example.main.spec.js -------------------------------------------------------------------------------- /tests/spec/example.controller.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flatlogic/angular-dashboard-seed/HEAD/tests/spec/example.controller.spec.js --------------------------------------------------------------------------------