├── src
├── assets
│ ├── .gitkeep
│ └── header-bg.png
├── app
│ ├── app.component.css
│ ├── components
│ │ ├── footer
│ │ │ ├── footer.component.css
│ │ │ ├── footer.component.html
│ │ │ ├── footer.component.ts
│ │ │ └── footer.component.spec.ts
│ │ ├── login
│ │ │ ├── user2-160x160.jpg
│ │ │ ├── login.component.spec.ts
│ │ │ ├── login.component.html
│ │ │ └── login.component.ts
│ │ ├── header
│ │ │ ├── header.component.html
│ │ │ ├── header.component.ts
│ │ │ ├── header.component.css
│ │ │ └── header.component.spec.ts
│ │ ├── usersinglepost
│ │ │ ├── usersinglepost.component.html
│ │ │ ├── usersinglepost.component.spec.ts
│ │ │ ├── usersinglepost.component.ts
│ │ │ └── usersinglepost.component.css
│ │ ├── allblogs
│ │ │ ├── allblogs.component.spec.ts
│ │ │ ├── allblogs.component.html
│ │ │ ├── allblogs.component.ts
│ │ │ └── allblogs.component.css
│ │ ├── register
│ │ │ ├── register.component.spec.ts
│ │ │ ├── register.component.html
│ │ │ └── register.component.ts
│ │ ├── dashboard
│ │ │ ├── dashboard.component.spec.ts
│ │ │ ├── dashboard.component.ts
│ │ │ ├── dashboard.component.css
│ │ │ └── dashboard.component.html
│ │ └── singlepost
│ │ │ ├── singlepost.component.spec.ts
│ │ │ ├── singlepost.component.html
│ │ │ ├── singlepost.component.ts
│ │ │ └── singlepost.component.css
│ ├── app.component.html
│ ├── app.component.ts
│ ├── models
│ │ └── cosmic.model.ts
│ ├── services
│ │ ├── auth-guard.service.ts
│ │ └── cosmic.service.ts
│ ├── app.component.spec.ts
│ ├── app-routing.module.ts
│ └── app.module.ts
├── favicon.ico
├── environments
│ ├── environment.prod.ts
│ └── environment.ts
├── config
│ ├── cosmic.prod.ts
│ └── cosmo.config.ts
├── styles.css
├── tsconfig.app.json
├── tsconfig.spec.json
├── tslint.json
├── browserslist
├── main.ts
├── test.ts
├── karma.conf.js
├── index.html
└── polyfills.ts
├── dist
└── ngApp
│ ├── favicon.ico
│ ├── styles.9ab0139598d91d590a2a.css
│ ├── assets
│ └── header-bg.png
│ ├── runtime.a66f828dca56eeb90e02.js
│ ├── index.html
│ ├── 3rdpartylicenses.txt
│ └── polyfills.2f4a59095805af02bd79.js
├── app.json
├── app.js
├── e2e
├── src
│ ├── app.po.ts
│ └── app.e2e-spec.ts
├── tsconfig.e2e.json
└── protractor.conf.js
├── .editorconfig
├── tsconfig.json
├── prepare.js
├── .gitignore
├── README.md
├── tslint.json
├── package.json
└── angular.json
/src/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/app.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/app/components/footer/footer.component.css:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cosmicjs/angular-blog/master/src/favicon.ico
--------------------------------------------------------------------------------
/dist/ngApp/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cosmicjs/angular-blog/master/dist/ngApp/favicon.ico
--------------------------------------------------------------------------------
/src/app/app.component.html:
--------------------------------------------------------------------------------
1 |
2 |
Author: {{data.metadata.author}}
12 | 13 |Author: {{data.metadata.author}}
11 | 12 |Author: {{data.metadata.author}}
14 | 15 |Sign in to start your session
23 | 24 | 37 |{{message}}
38 |Register here
25 | 26 | 27 |Author: {{data.metadata.author}}
71 |