From f60745b68df1668aba972b6fe3a3dcb9100e12b9 Mon Sep 17 00:00:00 2001 From: "katerina.iatropoulou" Date: Fri, 17 Jun 2016 15:04:16 +0000 Subject: [PATCH] added first page for linking results git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-portal/trunk@42945 d315682c-612b-4755-9ff5-7f18f6832af3 --- src/app/linking/linkingHome.component.ts | 51 ++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 src/app/linking/linkingHome.component.ts diff --git a/src/app/linking/linkingHome.component.ts b/src/app/linking/linkingHome.component.ts new file mode 100644 index 00000000..ecf08bba --- /dev/null +++ b/src/app/linking/linkingHome.component.ts @@ -0,0 +1,51 @@ +import {Component} from '@angular/core'; +import {RouteConfig, ROUTER_DIRECTIVES, Router} from '@angular/router-deprecated'; +import {JSONP_PROVIDERS} from '@angular/http'; +import {Observable} from 'rxjs/Observable'; + +@Component({ + selector: 'linking-home', + template: ` +
+ + +
+
+
+ +
+

Link with project

+

Link your research result with funded projects.

+ Link with project + +
+
+
+
+

Link with Community

+

Link your research result with research communities.

+ Link with community + +
+
+
+
+

Link with Software

+

....

+ Link with software + +
+
+
+
+
`, + directives: [ + ...ROUTER_DIRECTIVES + ], +}) + +export class LinkingHomeComponent { + +}