diff --git a/src/app/core/components/home/home.component.html b/src/app/core/components/home/home.component.html index b4b19e5d..600cb0e8 100644 --- a/src/app/core/components/home/home.component.html +++ b/src/app/core/components/home/home.component.html @@ -7,7 +7,7 @@ {{ 'config.landing_title' | translate }}

- {{ 'config.landing_subtitle' | translate }} + {{ 'config.landing_subtitle' | translate: { AppTitle: AppTitle } }}

diff --git a/src/app/core/components/home/home.component.ts b/src/app/core/components/home/home.component.ts index bda8fab6..b878ab39 100644 --- a/src/app/core/components/home/home.component.ts +++ b/src/app/core/components/home/home.component.ts @@ -13,8 +13,10 @@ import { Title } from '@angular/platform-browser'; }) export class HomeComponent { public environment = environment; + public AppTitle = environment.appTitle; public nonexistent_email = ''; public email_sent = false; + constructor( @Inject(DOCUMENT) private document: any, public storageService: StorageService,