2019-07-18 13:36:05 +02:00
< div * ngIf = "(managerOfCommunities.length > 0 || subscriberOfCommunities.length > 0)" class = "banner-background image-front-topbar uk-section uk-background-norepeat uk-background-bottom-center uk-background-cover uk-section-secondary uk-section-overlap uk-position-relative uk-preserve-color" uk-scrollspy = "{"target":"[uk-scrollspy-class]","cls":"uk-animation-fade","delay":false}" tm-header-transparent = "light" tm-header-transparent-placeholder = "" >
2019-06-24 16:11:27 +02:00
< div class = " uk-section uk-padding-remove-bottom" >
2019-06-25 13:48:15 +02:00
< div class = "uk-position-cover" > < / div >
2019-04-08 14:17:39 +02:00
< div class = "uk-position-relative uk-panel" >
2019-07-02 17:23:19 +02:00
< div * ngIf = "loading" class = "uk-container uk-container-large uk-height-large" >
2019-06-25 11:47:43 +02:00
< div class = "uk-animation-fade uk-margin-top uk-width-1-2" role = "alert" > < span class = "loading-gif uk-align-center" > < / span > < / div >
< / div >
2019-07-03 15:32:59 +02:00
< div * ngIf = "!loading" class = "uk-container uk-container-large uk-section" >
< div * ngIf = "managerOfCommunities.length > 0 || subscriberOfCommunities.length > 0" class = "uk-child-width-1-1@s uk-child-width-1-2@m uk-flex uk-flex-middle" uk-grid >
2019-06-26 17:52:10 +02:00
< div >
2019-07-02 17:23:19 +02:00
< div * ngIf = "managerOfCommunities.length > 0" class = "uk-grid" >
2019-06-26 17:52:10 +02:00
< h5 class = "uk-width-1-1 uk-text-bold" > You are managing< / h5 >
2019-07-02 17:23:19 +02:00
< div class = "uk-width-1-1 uk-margin-top" >
2019-06-26 17:52:10 +02:00
< div class = "uk-grid-match uk-grid-small uk-child-width-1-3@m uk-child-width-1-2@s uk-child-width-1-1@xs uk-text-center" uk-grid uk-height-match = ".community" >
< div * ngFor = "let community of managerOfCommunities.slice(0,3); let i = index" >
2019-07-04 15:09:48 +02:00
< div class = "uk-padding-small uk-card uk-card-default uk-card-small communityCard" title = "{{community.description}}" >
2019-06-26 17:52:10 +02:00
< browse-community [ community ] = community [ showDescription ] = false > < / browse-community >
< / div >
2019-04-15 12:06:58 +02:00
< / div >
< / div >
2019-06-26 17:52:10 +02:00
< div * ngIf = "managerOfCommunities.length > 3" class = "uk-text-right uk-width-1-1 uk-margin-top" >
< a [ queryParams ] = " { role: quote ( ' manager ' ) } " class = "portal-color uk-text-uppercase uk-text-bold"
routerLinkActive="router-link-active" routerLink="/search/find/communities">
< div > View all ({{managerOfCommunities.length | number}}) >< / div >
< / a >
< / div >
2019-06-24 16:11:27 +02:00
< / div >
2019-04-08 14:17:39 +02:00
< / div >
2019-04-09 20:48:03 +02:00
2019-07-02 17:23:19 +02:00
< div class = "uk-container uk-container-large uk-width-4-5" >
2019-06-26 17:52:10 +02:00
< div * ngIf = "subscriberErrorMessage" class = "uk-animation-fade uk-alert uk-alert-warning" role = "alert" >
{{subscriberErrorMessage}}
< / div >
2019-04-09 20:48:03 +02:00
< / div >
2019-07-02 17:23:19 +02:00
< div * ngIf = "subscriberOfCommunities.length > 0" class = "uk-grid" >
2019-06-26 17:52:10 +02:00
< h5 class = "uk-width-1-1 uk-text-bold" > You are subscribed to< / h5 >
2019-07-02 17:23:19 +02:00
< div class = "uk-width-1-1 uk-margin-top" >
2019-06-26 17:52:10 +02:00
< div class = "uk-grid-match uk-grid-small uk-child-width-1-3@m uk-child-width-1-2@s uk-child-width-1-1@xs uk-text-center" uk-grid uk-height-match = ".community" >
< div * ngFor = "let community of subscriberOfCommunities.slice(0,3); let i = index" >
2019-07-04 15:09:48 +02:00
< div class = "uk-padding-small uk-card uk-card-small uk-card-default communityCard"
2019-06-26 17:52:10 +02:00
[attr.uk-tooltip]="((community.description) ? ('title: '+ community.description + '; pos: bottom-right') : 'cls: uk-invisible')">
< browse-community [ community ] = community [ showDescription ] = false > < / browse-community >
< / div >
2019-04-15 12:06:58 +02:00
< / div >
< / div >
2019-06-26 17:52:10 +02:00
< div * ngIf = "subscriberOfCommunities.length > 3" class = "uk-text-right uk-width-1-1 uk-margin-top" >
< a [ queryParams ] = " { status: quote ( ' subscribed ' ) } " class = "portal-color uk-text-uppercase uk-text-bold"
routerLinkActive="router-link-active" routerLink="/search/find/communities">
< div > View all ({{subscriberOfCommunities.length | number}}) >< / div >
< / a >
< / div >
2019-04-08 14:17:39 +02:00
< / div >
2019-06-26 17:52:10 +02:00
2019-04-08 14:17:39 +02:00
< / div >
2019-06-24 16:11:27 +02:00
2019-04-08 14:17:39 +02:00
< / div >
2019-06-27 13:30:00 +02:00
< div class = "uk-text-center" >
< img width = "296" height = "285" src = "../../assets/banner/login.png" >
2019-06-26 17:52:10 +02:00
< / div >
2018-10-05 01:10:13 +02:00
< / div >
2019-07-18 13:36:05 +02:00
< / div >
< / div >
< / div >
< / div >
2019-07-22 11:19:34 +02:00
< helper * ngIf = "pageContents && pageContents['top'] && pageContents['top'].length > 0" [ texts ] = " pageContents [ ' top ' ] " > < / helper >
2019-07-18 13:36:05 +02:00
< div * ngIf = "(managerOfCommunities.length == 0 && subscriberOfCommunities.length == 0)" class = "home-banner image-front-topbar uk-section uk-background-norepeat uk-background-bottom-center uk-background-cover uk-section-secondary uk-section-overlap uk-position-relative uk-preserve-color" uk-scrollspy = "{"target":"[uk-scrollspy-class]","cls":"uk-animation-fade","delay":false}" tm-header-transparent = "light" tm-header-transparent-placeholder = "" >
< div class = " uk-section uk-padding-remove-bottom" >
< div class = "uk-position-cover" > < / div >
< div class = "uk-position-relative uk-panel" >
< div class = "uk-container uk-container-large uk-section" >
< div class = "uk-grid" >
2019-07-03 15:32:59 +02:00
< div class = "uk-width-1-2@m uk-width-1-1@s" >
2019-07-12 12:12:16 +02:00
< h1 class = "font-41" > Build an Open Research < b > Gateway< / b > for your < b > Community< / b > < / h1 >
< h4 class = "uk-margin-remove-top" > Turn Open Science into practice< / h4 >
< div class = "uk-h5 uk-margin-top" > Share and link your research results.< br >
Across organizations, across borders.< br > Customized to your needs.< / div >
2019-06-24 16:11:27 +02:00
< / div >
2019-07-02 17:23:19 +02:00
< div class = "uk-width-1-1 uk-inline uk-margin-medium-top uk-margin-medium-bottom" >
2019-07-18 13:36:05 +02:00
< a class = "uk-button portal-button" routerLink = "/about" routerLinkActive = "router-link-active" > LEARN
HOW< / a >
2019-04-08 14:17:39 +02:00
< / div >
2018-04-21 18:24:07 +02:00
< / div >
2019-04-08 14:17:39 +02:00
< / div >
< / div >
2018-02-12 12:41:40 +01:00
< / div >
2019-04-08 14:17:39 +02:00
< / div >
2019-07-18 13:36:05 +02:00
< div >
< div class = "uk-container uk-container-large uk-margin-large-top" >
< h1 class = "uk-text-center uk-text-bold" > Open and FAIR science is our mission< / h1 >
< div class = "uk-margin-medium-top" uk-height-match = ".target" >
2019-07-04 15:09:48 +02:00
< div class = "uk-child-width-1-3@m uk-child-width-1-1@s uk-grid-match uk-grid-medium uk-grid-margin" uk-grid >
< div >
< div class = "uk-card uk-card-default connectInfoCard" >
< div class = "uk-card-media-top uk-margin-top target" >
2019-07-18 13:36:05 +02:00
< img src = "assets/home/1.png" class = "uk-align-center" width = "111" height = "138" >
2019-07-04 15:09:48 +02:00
< / div >
< div class = "uk-card-body uk-grid-divider uk-margin-top" uk-grid >
< div class = "uk-width-1-1 uk-text-center target" >
< h5 class = "uk-text-bold" > A Virtual Research Environment< / h5 >
< div > An overlay platform making it easy to share, link, disseminate and monitor all your publications, data, software, methods. In one place.< / div >
2019-06-24 16:11:27 +02:00
< / div >
2019-07-04 15:09:48 +02:00
< div class = "uk-width-1-1" >
< ul class = "uk-list" >
< li >
< span class = "uk-border-circle uk-icon-button icon-button-small portal-icon-button uk-margin-small-right" uk-icon = "check" >
< / span >
Access to OpenAIRE resources
< / li >
< li >
< span class = "uk-border-circle uk-icon-button icon-button-small portal-icon-button uk-margin-small-right" uk-icon = "check" >
< / span >
Moderated, front-end linking
< / li >
< li >
< span class = "uk-border-circle uk-icon-button icon-button-small portal-icon-button uk-margin-small-right" uk-icon = "check" >
< / span >
Cross-platform search
< / li >
< / ul >
2019-06-24 16:11:27 +02:00
< / div >
2019-07-04 15:09:48 +02:00
< / div >
< / div >
< / div >
< div >
< div class = "uk-card uk-card-default connectInfoCard" >
< div class = "uk-card-media-top uk-margin-top target" >
< img src = "../../assets/home/2.png" class = "uk-align-center" width = "127" height = "138" >
< / div >
< div class = "uk-card-body uk-grid-divider uk-margin-top" uk-grid >
< div class = "uk-width-1-1 uk-text-center target" >
< h5 class = "uk-text-bold" > Open Science in action< / h5 >
< div > A time-saving bundle of services for researchers to effortlessly practice open science. An integral part of the European Open Science Cloud.< / div >
2019-04-09 20:48:03 +02:00
2019-07-04 15:09:48 +02:00
< / div >
< div class = "uk-width-1-1" >
< ul class = "uk-list" >
< li >
< span class = "uk-border-circle uk-icon-button icon-button-small portal-icon-button uk-margin-small-right" uk-icon = "check" >
< / span >
Use of OpenAIRE Guidelines
< / li >
< li >
< span class = "uk-border-circle uk-icon-button icon-button-small portal-icon-button uk-margin-small-right" uk-icon = "check" >
< / span >
DOIs via Zenodo
< / li >
< li >
< span class = "uk-border-circle uk-icon-button icon-button-small portal-icon-button uk-margin-small-right" uk-icon = "check" >
< / span >
EOSC Single Sign-On
< / li >
< / ul >
2019-06-24 16:11:27 +02:00
< / div >
< / div >
< / div >
2019-07-04 15:09:48 +02:00
< / div >
< div >
< div class = "uk-card uk-card-default connectInfoCard" >
< div class = "uk-card-media-top uk-margin-top target" >
< img src = "../../assets/home/3.png" class = "uk-align-center" width = "139" height = "138" >
< / div >
< div class = "uk-card-body uk-grid-divider uk-margin-top" uk-grid >
< div class = "uk-width-1-1 uk-text-center target" >
< h5 class = "uk-text-bold" > Customized to your needs< / h5 >
< div > A Science Gateway with your own brand, rules for aggregation, text & data mining, and
presentation. Run by you via a simple, yet powerful backend administration tool.< / div >
2019-06-24 16:11:27 +02:00
< / div >
2019-07-04 15:09:48 +02:00
< div class = "uk-width-1-1" >
< ul class = "uk-list" >
< li >
< span class = "uk-border-circle uk-icon-button icon-button-small portal-icon-button uk-margin-small-right" uk-icon = "check" >
< / span >
Access control
< / li >
< li >
< span class = "uk-border-circle uk-icon-button icon-button-small portal-icon-button uk-margin-small-right" uk-icon = "check" >
< / span >
Analytics: rich set of indicators
< / li >
< li >
< span class = "uk-border-circle uk-icon-button icon-button-small portal-icon-button uk-margin-small-right" uk-icon = "check" >
< / span >
Look & feel to match your brand
< / li >
< / ul >
2019-04-15 12:06:58 +02:00
< / div >
< / div >
2019-04-08 14:17:39 +02:00
< / div >
< / div >
< / div >
2019-06-24 16:11:27 +02:00
< / div >
2019-07-18 13:36:05 +02:00
< / div >
2019-07-04 15:09:48 +02:00
< div class = "uk-margin-large-top home-background uk-section uk-background-norepeat uk-background-top-center uk-background-cover uk-section-secondary uk-section-overlap uk-position-relative uk-preserve-color" >
< div class = "uk-container uk-container-large" >
< gif-slider [ gifs ] = " gifs " [ link ] = " true " [ linkTitle ] = " ' learn more ' " [ route ] = " ' / about ' " >
< / gif-slider >
< / div >
< / div >
2019-07-18 18:03:37 +02:00
< / div >
< div class = "uk-container uk-container-large" >
< errorMessages [ status ] = " [ status ] " [ type ] = " ' communities ' " > < / errorMessages >
2019-07-18 13:36:05 +02:00
< / div >
< div * ngIf = "loading" class = "uk-container uk-container-large uk-height-large" >
< div class = "uk-animation-fade uk-margin-top uk-width-1-2" role = "alert" > < span class = "loading-gif uk-align-center" > < / span > < / div >
< / div >
2019-07-18 18:03:37 +02:00
< div * ngIf = "!loading && researchCommunities.length > 0" class = "uk-container uk-container-large uk-margin-large-top" >
2019-07-18 13:36:05 +02:00
< h1 class = "uk-text-bold" > Community Gateways in Action< / h1 >
< div [ class ] = " ' uk-margin-medium-top ' + ( researchCommunities . length < = 5 ? ' uk-margin-medium-bottom ' : ' ' ) " >
2019-07-04 15:09:48 +02:00
2019-07-18 13:36:05 +02:00
< div class = "uk-grid-match uk-grid-medium uk-child-width-1-5@m uk-child-width-1-2@s uk-child-width-1-1@xs uk-text-center" uk-grid uk-height-match = ".community" >
< div * ngFor = "let community of researchCommunities.slice(0, 5); let i = index" >
< div class = "uk-padding-small uk-padding-remove-vertical uk-height-max-large uk-card uk-card-default communityCard" >
< browse-community [ community ] = community > < / browse-community >
2019-07-04 15:09:48 +02:00
< / div >
< / div >
2019-07-18 13:36:05 +02:00
< / div >
< / div >
< div class = "uk-text-right uk-margin-top" >
< a * ngIf = "researchCommunities.length > 5" class = "portal-color uk-text-uppercase uk-text-bold"
routerLinkActive="router-link-active" routerLink="/search/find/communities">
Browse All >
< / a >
2019-04-08 14:17:39 +02:00
< / div >
< / div >
2019-07-22 11:19:34 +02:00
< helper * ngIf = "pageContents && pageContents['bottom'] && pageContents['bottom'].length > 0" [ texts ] = " pageContents [ ' bottom ' ] " > < / helper >
2019-07-18 13:36:05 +02:00
< div class = "contact-banner uk-background-norepeat uk-background-cover uk-section-secondary uk-section-overlap uk-position-relative uk-preserve-color uk-margin-large-top" >
2019-07-02 17:23:19 +02:00
< div class = "uk-container uk-container-large uk-section" >
2019-07-03 15:32:59 +02:00
< div class = "uk-flex uk-flex-middle uk-padding" uk-grid >
2019-07-01 15:58:31 +02:00
< div class = "uk-text-center uk-width-1-1@s uk-width-1-3@m" >
2019-07-18 13:36:05 +02:00
< img width = "237" height = "250" src = "assets/contact/1.png" >
2019-06-26 17:52:10 +02:00
< / div >
2019-07-01 15:58:31 +02:00
< div class = "uk-width-expand" >
< h1 class = "uk-text-bold" >
< div > Let us help you develop a collaborative Open Science Gateway for your community. It is fast. It is reliable.< / div >
< / h1 >
2019-07-03 15:32:59 +02:00
< div class = "uk-margin-medium" > Get in touch with our team to find out how.< / div >
< div class = "uk-inline" >
2019-06-25 16:27:27 +02:00
< a class = "uk-button portal-button" routerLink = "/contact-us" routerLinkActive = "router-link-active" > CONTACT
US< / a >
2019-06-24 16:11:27 +02:00
< / div >
< / div >
< / div >
< / div >
< / div >
2018-10-05 01:10:13 +02:00
< div class = "uk-section-muted" uk-scrollspy = "{"target":"[uk-scrollspy-class]","cls":"uk-animation-fade","delay":false}" >
2019-07-18 13:36:05 +02:00
< div class = "uk-container uk-container-large" >
< other-portals [ properties ] = " properties " > < / other-portals >
2018-10-05 01:10:13 +02:00
< / div >
2019-07-18 13:36:05 +02:00
< / div >