diff --git a/explore/src/app/fos/fos.module.ts b/explore/src/app/fos/fos.module.ts index 85140bf2..6d19c93a 100644 --- a/explore/src/app/fos/fos.module.ts +++ b/explore/src/app/fos/fos.module.ts @@ -7,6 +7,8 @@ import {IconsModule} from "../openaireLibrary/utils/icons/icons.module"; import {BreadcrumbsModule} from "../openaireLibrary/utils/breadcrumbs/breadcrumbs.module"; import {Schema2jsonldModule} from "../openaireLibrary/sharedComponents/schema2jsonld/schema2jsonld.module"; import {SearchInputModule} from "../openaireLibrary/sharedComponents/search-input/search-input.module"; +import {SEOServiceModule} from "../openaireLibrary/sharedComponents/SEO/SEOService.module"; +import {PiwikService} from "../openaireLibrary/utils/piwik/piwik.service"; import {FosRoutingModule} from './fos-routing.module'; import {FosComponent} from './fos.component'; @@ -15,13 +17,13 @@ import {FosComponent} from './fos.component'; imports: [ CommonModule, FormsModule, RouterModule, FosRoutingModule, BreadcrumbsModule, IconsModule, - SearchInputModule, Schema2jsonldModule + SearchInputModule, Schema2jsonldModule, SEOServiceModule ], declarations: [ FosComponent ], providers: [ - PreviousRouteRecorder + PreviousRouteRecorder, PiwikService ], exports: [ FosComponent diff --git a/explore/src/app/home/home.component.html b/explore/src/app/home/home.component.html index 308d918e..ffcf2145 100644 --- a/explore/src/app/home/home.component.html +++ b/explore/src/app/home/home.component.html @@ -11,8 +11,8 @@
-

- Discover open
linked research. +

+ Discover open linked research.

@@ -147,12 +147,12 @@

Deposit your research.

-

- Whether it’s publications, data or software,
- select an OpenAIRE compatible repository and
- share using community standards. Alternatively
- use Zenodo, a catch-all repository hosted by CERN.
- All results will be indexed, discoverable and accessible
+

+ Whether it’s publications, data or software, + select an OpenAIRE compatible repository and + share using community standards. Alternatively + use Zenodo, a catch-all repository hosted by CERN. + All results will be indexed, discoverable and accessible via EXPLORE.

@@ -163,9 +163,11 @@

Link your work.

-

- Connect all your research. If you can't find your research
results in OpenAIRE, don't worry! Use our Link service,
that reaches out to many external sources via APIs, and
- claim them to your Grant or ORCID. Use the service to provide
+

+ Connect all your research. If you can't find your research + results in OpenAIRE, don't worry! Use our Link service, + that reaches out to many external sources via APIs, and + claim them to your Grant or ORCID. Use the service to provide meaningful links between publications-datasets-software.

@@ -222,7 +224,7 @@ diff --git a/explore/src/app/sdg/sdg.module.ts b/explore/src/app/sdg/sdg.module.ts index fa7babc8..80e52faa 100644 --- a/explore/src/app/sdg/sdg.module.ts +++ b/explore/src/app/sdg/sdg.module.ts @@ -7,6 +7,8 @@ import {BreadcrumbsModule} from "../openaireLibrary/utils/breadcrumbs/breadcrumb import {RefineFieldResultsServiceModule} from "../openaireLibrary/services/refineFieldResultsService.module"; import {LoadingModule} from "../openaireLibrary/utils/loading/loading.module"; import {Schema2jsonldModule} from "../openaireLibrary/sharedComponents/schema2jsonld/schema2jsonld.module"; +import {SEOServiceModule} from "../openaireLibrary/sharedComponents/SEO/SEOService.module"; +import {PiwikService} from "../openaireLibrary/utils/piwik/piwik.service"; import {SdgRoutingModule} from './sdg-routing.module'; import {SdgComponent} from './sdg.component'; @@ -15,13 +17,13 @@ import {SdgComponent} from './sdg.component'; imports: [ CommonModule, FormsModule, RouterModule, SdgRoutingModule, BreadcrumbsModule, RefineFieldResultsServiceModule, - LoadingModule, Schema2jsonldModule + LoadingModule, Schema2jsonldModule, SEOServiceModule ], declarations: [ SdgComponent ], providers: [ - PreviousRouteRecorder + PreviousRouteRecorder, PiwikService ], exports: [ SdgComponent