diff --git a/sdg/sdg.component.html b/sdg/sdg.component.html
index c1f431fe..8cb3da17 100644
--- a/sdg/sdg.component.html
+++ b/sdg/sdg.component.html
@@ -41,6 +41,7 @@
+ 0" [texts]="pageContents['top']" class="uk-container">
diff --git a/sdg/sdg.component.ts b/sdg/sdg.component.ts
index 2c648dcb..a7360ec1 100644
--- a/sdg/sdg.component.ts
+++ b/sdg/sdg.component.ts
@@ -31,6 +31,7 @@ export class SdgComponent implements OnInit, OnDestroy {
properties: EnvProperties = properties;
openaireEntities = OpenaireEntities;
@Input() customFilter = null;
+ @Input() pageContents = null;
public breadcrumbs: Breadcrumb[] = [{name: 'home', route: '/'}, {name: 'Sustainable Development Goals'}];
subscriptions: Subscription[] = [];
diff --git a/sdg/sdg.module.ts b/sdg/sdg.module.ts
index 1888b381..748729b7 100644
--- a/sdg/sdg.module.ts
+++ b/sdg/sdg.module.ts
@@ -9,13 +9,14 @@ import {Schema2jsonldModule} from "../sharedComponents/schema2jsonld/schema2json
import {SEOServiceModule} from "../sharedComponents/SEO/SEOService.module";
import {SdgRoutingModule} from './sdg-routing.module';
import {SdgComponent} from './sdg.component';
+import {HelperModule} from "../utils/helper/helper.module";
@NgModule({
- imports: [
- CommonModule, FormsModule, RouterModule,
- SdgRoutingModule, BreadcrumbsModule, RefineFieldResultsServiceModule,
- LoadingModule, Schema2jsonldModule, SEOServiceModule
- ],
+ imports: [
+ CommonModule, FormsModule, RouterModule,
+ SdgRoutingModule, BreadcrumbsModule, RefineFieldResultsServiceModule,
+ LoadingModule, Schema2jsonldModule, SEOServiceModule, HelperModule
+ ],
declarations: [
SdgComponent
],
@@ -26,4 +27,4 @@ import {SdgComponent} from './sdg.component';
})
export class SdgModule {
-}
\ No newline at end of file
+}