Merge remote-tracking branch 'origin/demo' into feat/material-bundles-section

This commit is contained in:
d.strigo 2020-05-11 09:26:11 +03:00
commit 1f56fc43ba
40 changed files with 3716 additions and 87 deletions

View file

@ -63,7 +63,19 @@ export class NgxAdminLandingPageComponent implements OnDestroy, OnInit {
}),
filter(item => item),
tap((item: any) => {
this.metaDataService.updateTitle(`Nebular - ${item.name}`);
switch (item.name) {
case 'Installation Guidelines':
this.metaDataService.updateTitle(`Ngx-admin - Guideline to install.`);
break;
case 'Server deployment':
case 'Theme System':
case 'Change Theme':
case 'Backend integration':
this.metaDataService.updateTitle(`Ngx-admin - ${item.name}`);
break;
default:
this.metaDataService.updateTitle(item.name);
}
this.metaDataService.updateDescription(item.description);
}),
publishReplay(),