├── .editorconfig ├── .gitignore ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── layouts │ │ └── default │ │ │ ├── default.component.html │ │ │ ├── default.component.scss │ │ │ ├── default.component.spec.ts │ │ │ ├── default.component.ts │ │ │ └── default.module.ts │ ├── modules │ │ ├── dashboard.service.spec.ts │ │ ├── dashboard.service.ts │ │ ├── dashboard │ │ │ ├── dashboard.component.html │ │ │ ├── dashboard.component.scss │ │ │ ├── dashboard.component.spec.ts │ │ │ └── dashboard.component.ts │ │ └── posts │ │ │ ├── posts.component.html │ │ │ ├── posts.component.scss │ │ │ ├── posts.component.spec.ts │ │ │ └── posts.component.ts │ └── shared │ │ ├── components │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.scss │ │ │ ├── footer.component.spec.ts │ │ │ └── footer.component.ts │ │ ├── header │ │ │ ├── header.component.html │ │ │ ├── header.component.scss │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ └── sidebar │ │ │ ├── sidebar.component.html │ │ │ ├── sidebar.component.scss │ │ │ ├── sidebar.component.spec.ts │ │ │ └── sidebar.component.ts │ │ ├── shared.module.ts │ │ └── widgets │ │ ├── area │ │ ├── area.component.html │ │ ├── area.component.scss │ │ ├── area.component.spec.ts │ │ └── area.component.ts │ │ ├── card │ │ ├── card.component.html │ │ ├── card.component.scss │ │ ├── card.component.spec.ts │ │ └── card.component.ts │ │ └── pie │ │ ├── pie.component.html │ │ ├── pie.component.scss │ │ ├── pie.component.spec.ts │ │ └── pie.component.ts ├── assets │ └── .gitkeep ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss └── test.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/package.json -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/layouts/default/default.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/layouts/default/default.component.html -------------------------------------------------------------------------------- /src/app/layouts/default/default.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/layouts/default/default.component.scss -------------------------------------------------------------------------------- /src/app/layouts/default/default.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/layouts/default/default.component.spec.ts -------------------------------------------------------------------------------- /src/app/layouts/default/default.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/layouts/default/default.component.ts -------------------------------------------------------------------------------- /src/app/layouts/default/default.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/layouts/default/default.module.ts -------------------------------------------------------------------------------- /src/app/modules/dashboard.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/modules/dashboard.service.spec.ts -------------------------------------------------------------------------------- /src/app/modules/dashboard.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/modules/dashboard.service.ts -------------------------------------------------------------------------------- /src/app/modules/dashboard/dashboard.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/modules/dashboard/dashboard.component.html -------------------------------------------------------------------------------- /src/app/modules/dashboard/dashboard.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/modules/dashboard/dashboard.component.scss -------------------------------------------------------------------------------- /src/app/modules/dashboard/dashboard.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/modules/dashboard/dashboard.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/dashboard/dashboard.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/modules/dashboard/dashboard.component.ts -------------------------------------------------------------------------------- /src/app/modules/posts/posts.component.html: -------------------------------------------------------------------------------- 1 |

posts works!

2 | -------------------------------------------------------------------------------- /src/app/modules/posts/posts.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modules/posts/posts.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/modules/posts/posts.component.spec.ts -------------------------------------------------------------------------------- /src/app/modules/posts/posts.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/modules/posts/posts.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/shared/components/footer/footer.component.scss: -------------------------------------------------------------------------------- 1 | footer { 2 | padding: 20px; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/shared/components/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/header/header.component.html -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.scss: -------------------------------------------------------------------------------- 1 | ul li { 2 | list-style: none; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/header/header.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/header/header.component.ts -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/sidebar/sidebar.component.html -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/sidebar/sidebar.component.scss -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/sidebar/sidebar.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/components/sidebar/sidebar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/components/sidebar/sidebar.component.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/app/shared/widgets/area/area.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/area/area.component.html -------------------------------------------------------------------------------- /src/app/shared/widgets/area/area.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/widgets/area/area.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/area/area.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/widgets/area/area.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/area/area.component.ts -------------------------------------------------------------------------------- /src/app/shared/widgets/card/card.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/card/card.component.html -------------------------------------------------------------------------------- /src/app/shared/widgets/card/card.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/card/card.component.scss -------------------------------------------------------------------------------- /src/app/shared/widgets/card/card.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/card/card.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/widgets/card/card.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/card/card.component.ts -------------------------------------------------------------------------------- /src/app/shared/widgets/pie/pie.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/pie/pie.component.html -------------------------------------------------------------------------------- /src/app/shared/widgets/pie/pie.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/widgets/pie/pie.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/pie/pie.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/widgets/pie/pie.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/app/shared/widgets/pie/pie.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/src/test.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soufiane-fadil/angular-material-dashboard/HEAD/tslint.json --------------------------------------------------------------------------------