From 227cfa000cfea74ffa2e64f863a24adf16ad94e1 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Tue, 17 Nov 2020 13:19:17 +0000 Subject: [PATCH] [Exlore | Trunk]: Home change number section git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-portal/trunk@59894 d315682c-612b-4755-9ff5-7f18f6832af3 --- explore/src/app/home/home.component.html | 160 +++++++++++------------ explore/src/app/home/home.module.ts | 4 +- 2 files changed, 78 insertions(+), 86 deletions(-) diff --git a/explore/src/app/home/home.component.html b/explore/src/app/home/home.component.html index 06ff705c..fa83402d 100644 --- a/explore/src/app/home/home.component.html +++ b/explore/src/app/home/home.component.html @@ -197,107 +197,99 @@ class="graph-background-bottom uk-section uk-padding-remove-vertical uk-background-cover"> -
-
+
+

Our growing Community

-
+
-

- - {{fundersSize.number|number}} - {{fundersSize.size}} - -
+

+

+ {{fundersSize.number|number}}{{fundersSize.size}} +

Funders -

-

- - {{datasourcesSize.number|number}} - {{datasourcesSize.size}} - -
+

+
+

+ {{datasourcesSize.number|number}}{{datasourcesSize.size}} +

Content providers -

-

- - {{projectsSize.number|number}} - {{projectsSize.size}} - -
+

+
+

+ {{projectsSize.number|number}}{{projectsSize.size}} +

Projects -

+
-
-
-
-
-
-
-

- {{publicationsSize.count|number}}
- - - publications - -

+
+
+
+
+
+
+
{{publicationsSize.count|number}}
+
+ + publications +
+
+
+
{{softwareSize.count|number}}
+
+ + software +
+
+
+
{{datasetsSize.count|number}}
+
+ + research data +
+
+
-
-

- {{softwareSize.count|number}}
- - - software - -

-
-
-
-
-

- {{datasetsSize.count|number}}
- - - research data - -

-
-
-

- {{otherSize.count|number}}
- - - other research products - -

+
+
+
+
{{softwareSize.count|number}}
+
+ + software +
+
+
+
{{datasetsSize.count|number}}
+
+ + research data +
+
+
+
{{otherSize.count|number}}
+
+ + other research
products
+ other research products +
+
+
diff --git a/explore/src/app/home/home.module.ts b/explore/src/app/home/home.module.ts index 2fa18a46..51433d6d 100644 --- a/explore/src/app/home/home.module.ts +++ b/explore/src/app/home/home.module.ts @@ -25,7 +25,7 @@ import {EntitiesSelectionModule} from "../openaireLibrary/searchPages/searchUtil import {QuickSelectionsModule} from "../openaireLibrary/searchPages/searchUtils/quick-selections.module"; import {IconsModule} from "../openaireLibrary/utils/icons/icons.module"; import {IconsService} from "../openaireLibrary/utils/icons/icons.service"; -import {arrow_right} from "../openaireLibrary/utils/icons/icons"; +import {arrow_right, book, cog, database, earth} from "../openaireLibrary/utils/icons/icons"; @NgModule({ imports: [ @@ -52,6 +52,6 @@ import {arrow_right} from "../openaireLibrary/utils/icons/icons"; }) export class HomeModule { constructor(private iconsService: IconsService) { - this.iconsService.registerIcons([arrow_right]); + this.iconsService.registerIcons([arrow_right, book, cog, database, earth]); } }