├── .editorconfig ├── .gitignore ├── README.md ├── angular-cli.json ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.json ├── karma.conf.js ├── license.md ├── markdown-editor.png ├── package.json ├── protractor.conf.js ├── screenshot.png ├── search-articles.png ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── common │ │ ├── services │ │ │ ├── auth.service.spec.ts │ │ │ ├── auth.service.ts │ │ │ ├── markdown-parser.service.spec.ts │ │ │ ├── markdown-parser.service.ts │ │ │ ├── user.service.spec.ts │ │ │ └── user.service.ts │ │ └── top-nav │ │ │ ├── top-nav.component.html │ │ │ ├── top-nav.component.scss │ │ │ ├── top-nav.component.spec.ts │ │ │ └── top-nav.component.ts │ ├── components │ │ ├── article │ │ │ ├── article.component.css │ │ │ ├── article.component.html │ │ │ ├── article.component.spec.ts │ │ │ ├── article.component.ts │ │ │ ├── article.module.ts │ │ │ ├── article.service.spec.ts │ │ │ ├── article.service.ts │ │ │ ├── article.ts │ │ │ ├── edit-article │ │ │ │ ├── edit-article.component.html │ │ │ │ ├── edit-article.component.scss │ │ │ │ ├── edit-article.component.spec.ts │ │ │ │ └── edit-article.component.ts │ │ │ └── new-article │ │ │ │ ├── new-article.component.html │ │ │ │ ├── new-article.component.scss │ │ │ │ ├── new-article.component.spec.ts │ │ │ │ └── new-article.component.ts │ │ ├── blog │ │ │ ├── blog-new │ │ │ │ ├── blog-new.component.html │ │ │ │ ├── blog-new.component.scss │ │ │ │ ├── blog-new.component.spec.ts │ │ │ │ └── blog-new.component.ts │ │ │ ├── blog.component.css │ │ │ ├── blog.component.html │ │ │ ├── blog.component.spec.ts │ │ │ ├── blog.component.ts │ │ │ ├── blog.module.ts │ │ │ ├── blog.service.spec.ts │ │ │ └── blog.service.ts │ │ ├── course │ │ │ ├── course.component.css │ │ │ ├── course.component.html │ │ │ ├── course.component.spec.ts │ │ │ ├── course.component.ts │ │ │ ├── course.module.ts │ │ │ ├── course.service.spec.ts │ │ │ ├── course.service.ts │ │ │ ├── edit-course │ │ │ │ ├── edit-course.component.html │ │ │ │ ├── edit-course.component.scss │ │ │ │ ├── edit-course.component.spec.ts │ │ │ │ └── edit-course.component.ts │ │ │ └── new-course │ │ │ │ ├── new-course.component.html │ │ │ │ ├── new-course.component.scss │ │ │ │ ├── new-course.component.spec.ts │ │ │ │ └── new-course.component.ts │ │ ├── email │ │ │ ├── email.component.css │ │ │ ├── email.component.html │ │ │ ├── email.component.spec.ts │ │ │ └── email.component.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ ├── home.component.ts │ │ │ ├── new-comments │ │ │ │ ├── new-comments.component.css │ │ │ │ ├── new-comments.component.html │ │ │ │ ├── new-comments.component.spec.ts │ │ │ │ └── new-comments.component.ts │ │ │ ├── new-users │ │ │ │ ├── new-users.component.css │ │ │ │ ├── new-users.component.html │ │ │ │ ├── new-users.component.spec.ts │ │ │ │ └── new-users.component.ts │ │ │ ├── top-articles │ │ │ │ ├── top-articles.component.html │ │ │ │ ├── top-articles.component.scss │ │ │ │ ├── top-articles.component.spec.ts │ │ │ │ └── top-articles.component.ts │ │ │ └── user-growth │ │ │ │ ├── user-growth.component.css │ │ │ │ ├── user-growth.component.html │ │ │ │ ├── user-growth.component.spec.ts │ │ │ │ └── user-growth.component.ts │ │ ├── login │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ ├── login.component.spec.ts │ │ │ └── login.component.ts │ │ ├── settings │ │ │ ├── settings.component.css │ │ │ ├── settings.component.html │ │ │ ├── settings.component.spec.ts │ │ │ ├── settings.component.ts │ │ │ └── settings.module.ts │ │ ├── social │ │ │ └── social │ │ │ │ ├── social.component.html │ │ │ │ ├── social.component.scss │ │ │ │ ├── social.component.spec.ts │ │ │ │ └── social.component.ts │ │ ├── tag │ │ │ ├── tag.component.css │ │ │ ├── tag.component.html │ │ │ ├── tag.component.spec.ts │ │ │ ├── tag.component.ts │ │ │ └── tag.module.ts │ │ └── user │ │ │ ├── edit-user │ │ │ ├── edit-user.component.html │ │ │ ├── edit-user.component.scss │ │ │ ├── edit-user.component.spec.ts │ │ │ └── edit-user.component.ts │ │ │ ├── user.component.css │ │ │ ├── user.component.html │ │ │ ├── user.component.spec.ts │ │ │ ├── user.component.ts │ │ │ ├── user.module.ts │ │ │ ├── user.service.spec.ts │ │ │ └── user.service.ts │ └── index.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.json └── typings.d.ts └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/README.md -------------------------------------------------------------------------------- /angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/angular-cli.json -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/karma.conf.js -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/license.md -------------------------------------------------------------------------------- /markdown-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/markdown-editor.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/screenshot.png -------------------------------------------------------------------------------- /search-articles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/search-articles.png -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/common/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/services/auth.service.spec.ts -------------------------------------------------------------------------------- /src/app/common/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/services/auth.service.ts -------------------------------------------------------------------------------- /src/app/common/services/markdown-parser.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/services/markdown-parser.service.spec.ts -------------------------------------------------------------------------------- /src/app/common/services/markdown-parser.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/services/markdown-parser.service.ts -------------------------------------------------------------------------------- /src/app/common/services/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/services/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/common/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/services/user.service.ts -------------------------------------------------------------------------------- /src/app/common/top-nav/top-nav.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/top-nav/top-nav.component.html -------------------------------------------------------------------------------- /src/app/common/top-nav/top-nav.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/top-nav/top-nav.component.scss -------------------------------------------------------------------------------- /src/app/common/top-nav/top-nav.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/top-nav/top-nav.component.spec.ts -------------------------------------------------------------------------------- /src/app/common/top-nav/top-nav.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/common/top-nav/top-nav.component.ts -------------------------------------------------------------------------------- /src/app/components/article/article.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/article.component.css -------------------------------------------------------------------------------- /src/app/components/article/article.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/article.component.html -------------------------------------------------------------------------------- /src/app/components/article/article.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/article.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/article/article.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/article.component.ts -------------------------------------------------------------------------------- /src/app/components/article/article.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/article.module.ts -------------------------------------------------------------------------------- /src/app/components/article/article.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/article.service.spec.ts -------------------------------------------------------------------------------- /src/app/components/article/article.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/article.service.ts -------------------------------------------------------------------------------- /src/app/components/article/article.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/article.ts -------------------------------------------------------------------------------- /src/app/components/article/edit-article/edit-article.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/edit-article/edit-article.component.html -------------------------------------------------------------------------------- /src/app/components/article/edit-article/edit-article.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/edit-article/edit-article.component.scss -------------------------------------------------------------------------------- /src/app/components/article/edit-article/edit-article.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/edit-article/edit-article.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/article/edit-article/edit-article.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/edit-article/edit-article.component.ts -------------------------------------------------------------------------------- /src/app/components/article/new-article/new-article.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/new-article/new-article.component.html -------------------------------------------------------------------------------- /src/app/components/article/new-article/new-article.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/new-article/new-article.component.scss -------------------------------------------------------------------------------- /src/app/components/article/new-article/new-article.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/new-article/new-article.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/article/new-article/new-article.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/article/new-article/new-article.component.ts -------------------------------------------------------------------------------- /src/app/components/blog/blog-new/blog-new.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/blog/blog-new/blog-new.component.html -------------------------------------------------------------------------------- /src/app/components/blog/blog-new/blog-new.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/blog/blog-new/blog-new.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/blog/blog-new/blog-new.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/blog/blog-new/blog-new.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/blog/blog-new/blog-new.component.ts -------------------------------------------------------------------------------- /src/app/components/blog/blog.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/blog/blog.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/blog/blog.component.html -------------------------------------------------------------------------------- /src/app/components/blog/blog.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/blog/blog.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/blog/blog.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/blog/blog.component.ts -------------------------------------------------------------------------------- /src/app/components/blog/blog.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/blog/blog.module.ts -------------------------------------------------------------------------------- /src/app/components/blog/blog.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/blog/blog.service.spec.ts -------------------------------------------------------------------------------- /src/app/components/blog/blog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/blog/blog.service.ts -------------------------------------------------------------------------------- /src/app/components/course/course.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/course/course.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/course.component.html -------------------------------------------------------------------------------- /src/app/components/course/course.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/course.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/course/course.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/course.component.ts -------------------------------------------------------------------------------- /src/app/components/course/course.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/course.module.ts -------------------------------------------------------------------------------- /src/app/components/course/course.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/course.service.spec.ts -------------------------------------------------------------------------------- /src/app/components/course/course.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/course.service.ts -------------------------------------------------------------------------------- /src/app/components/course/edit-course/edit-course.component.html: -------------------------------------------------------------------------------- 1 |

2 | edit-course works! 3 |

4 | -------------------------------------------------------------------------------- /src/app/components/course/edit-course/edit-course.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/course/edit-course/edit-course.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/edit-course/edit-course.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/course/edit-course/edit-course.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/edit-course/edit-course.component.ts -------------------------------------------------------------------------------- /src/app/components/course/new-course/new-course.component.html: -------------------------------------------------------------------------------- 1 |

2 | new-course works! 3 |

4 | -------------------------------------------------------------------------------- /src/app/components/course/new-course/new-course.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/course/new-course/new-course.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/new-course/new-course.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/course/new-course/new-course.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/course/new-course/new-course.component.ts -------------------------------------------------------------------------------- /src/app/components/email/email.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/email/email.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/email/email.component.html -------------------------------------------------------------------------------- /src/app/components/email/email.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/email/email.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/email/email.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/email/email.component.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/components/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/components/home/new-comments/new-comments.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/home/new-comments/new-comments.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/new-comments/new-comments.component.html -------------------------------------------------------------------------------- /src/app/components/home/new-comments/new-comments.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/new-comments/new-comments.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/new-comments/new-comments.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/new-comments/new-comments.component.ts -------------------------------------------------------------------------------- /src/app/components/home/new-users/new-users.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/new-users/new-users.component.css -------------------------------------------------------------------------------- /src/app/components/home/new-users/new-users.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/new-users/new-users.component.html -------------------------------------------------------------------------------- /src/app/components/home/new-users/new-users.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/new-users/new-users.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/new-users/new-users.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/new-users/new-users.component.ts -------------------------------------------------------------------------------- /src/app/components/home/top-articles/top-articles.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/top-articles/top-articles.component.html -------------------------------------------------------------------------------- /src/app/components/home/top-articles/top-articles.component.scss: -------------------------------------------------------------------------------- 1 | .test { 2 | 3 | } -------------------------------------------------------------------------------- /src/app/components/home/top-articles/top-articles.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/top-articles/top-articles.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/top-articles/top-articles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/top-articles/top-articles.component.ts -------------------------------------------------------------------------------- /src/app/components/home/user-growth/user-growth.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/user-growth/user-growth.component.css -------------------------------------------------------------------------------- /src/app/components/home/user-growth/user-growth.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/user-growth/user-growth.component.html -------------------------------------------------------------------------------- /src/app/components/home/user-growth/user-growth.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/user-growth/user-growth.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/home/user-growth/user-growth.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/home/user-growth/user-growth.component.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/login/login.component.html -------------------------------------------------------------------------------- /src/app/components/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/login/login.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/login/login.component.ts -------------------------------------------------------------------------------- /src/app/components/settings/settings.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/settings/settings.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/settings/settings.component.html -------------------------------------------------------------------------------- /src/app/components/settings/settings.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/settings/settings.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/settings/settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/settings/settings.component.ts -------------------------------------------------------------------------------- /src/app/components/settings/settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/settings/settings.module.ts -------------------------------------------------------------------------------- /src/app/components/social/social/social.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/social/social/social.component.html -------------------------------------------------------------------------------- /src/app/components/social/social/social.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/social/social/social.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/social/social/social.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/social/social/social.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/social/social/social.component.ts -------------------------------------------------------------------------------- /src/app/components/tag/tag.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/tag/tag.component.html: -------------------------------------------------------------------------------- 1 |

2 | tag works! 3 |

4 | -------------------------------------------------------------------------------- /src/app/components/tag/tag.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/tag/tag.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/tag/tag.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/tag/tag.component.ts -------------------------------------------------------------------------------- /src/app/components/tag/tag.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/tag/tag.module.ts -------------------------------------------------------------------------------- /src/app/components/user/edit-user/edit-user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/user/edit-user/edit-user.component.html -------------------------------------------------------------------------------- /src/app/components/user/edit-user/edit-user.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/user/edit-user/edit-user.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/user/edit-user/edit-user.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/user/edit-user/edit-user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/user/edit-user/edit-user.component.ts -------------------------------------------------------------------------------- /src/app/components/user/user.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/user/user.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/user/user.component.html -------------------------------------------------------------------------------- /src/app/components/user/user.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/user/user.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/user/user.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/user/user.component.ts -------------------------------------------------------------------------------- /src/app/components/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/user/user.module.ts -------------------------------------------------------------------------------- /src/app/components/user/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/user/user.service.spec.ts -------------------------------------------------------------------------------- /src/app/components/user/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/components/user/user.service.ts -------------------------------------------------------------------------------- /src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/app/index.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elliotforbes/angular-2-admin/HEAD/tslint.json --------------------------------------------------------------------------------