Add main css rule for height like monitor. Add description in contact meta data as variable. Update theme and library
This commit is contained in:
parent
e56f542939
commit
fcdf735974
|
@ -1,5 +1,4 @@
|
|||
<schema2jsonld *ngIf="url" [URL]="url" [name]="pageTitle" type="other"
|
||||
description="Contact us to learn more about OpenAIRE Connect Research Gateways"></schema2jsonld>
|
||||
<schema2jsonld *ngIf="url" [URL]="url" [name]="pageTitle" type="other" [description]="description"></schema2jsonld>
|
||||
<div class="uk-container uk-container-large uk-section uk-padding-remove-bottom">
|
||||
<div class="uk-padding-small">
|
||||
<breadcrumbs [breadcrumbs]="breadcrumbs"></breadcrumbs>
|
||||
|
@ -12,7 +11,7 @@
|
|||
[properties]="properties" [errorMessage]="errorMessage"
|
||||
[contactForm]="contactForm" (sendEmitter)="send($event)">
|
||||
<h1 page-title class="uk-margin-auto">
|
||||
Contact us to <br> learn more <span class="uk-text-primary">.</span>
|
||||
Contact us to <br> learn more<span class="uk-text-primary">.</span>
|
||||
</h1>
|
||||
</contact-us>
|
||||
<div *ngIf="showLoading" class="uk-position-center uk-margin-medium-top">
|
||||
|
|
|
@ -22,6 +22,7 @@ import {properties} from "../../environments/environment";
|
|||
export class ContactComponent implements OnInit {
|
||||
public url: string = null;
|
||||
public pageTitle: string = "OpenAIRE - Connect | Contact Us";
|
||||
public description: string = "Contact us to learn more about OpenAIRE Connect Research Gateways";
|
||||
public showLoading = true;
|
||||
public errorMessage = '';
|
||||
public email: Email;
|
||||
|
@ -65,7 +66,7 @@ export class ContactComponent implements OnInit {
|
|||
this.seoService.createLinkForCanonicalURL(this.url);
|
||||
this.updateUrl(this.url);
|
||||
this.updateTitle(this.pageTitle);
|
||||
this.updateDescription("Contact us to learn more about OpenAIRE Connect Research Gateways");
|
||||
this.updateDescription(this.description);
|
||||
this.reset();
|
||||
//this.getDivContents();
|
||||
this.getPageContents();
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit ef347e9c02e9d287343f035ac214a3322ae72f41
|
||||
Subproject commit 5901716bff29b313bc21d0fc78d70f8e7236f97f
|
|
@ -251,6 +251,10 @@ Custom connect css
|
|||
background-color: #F9F9F9 !important;
|
||||
}
|
||||
|
||||
main {
|
||||
min-height: calc(100vh - 100px);
|
||||
}
|
||||
|
||||
/*.connectApp .login text {*/
|
||||
/* stroke: black;*/
|
||||
/* fill: black;*/
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 25e2dd30e2b2eb4d274754a1120adb5dbf11e9e0
|
||||
Subproject commit 8ba04ba5f755b94b9274428b3ce80bb423c40cef
|
Loading…
Reference in New Issue