Project

General

Profile

1
import {Component, OnInit} from '@angular/core';
2
import {Title} from '@angular/platform-browser';
3
import {Breadcrumb} from "../openaireLibrary/utils/breadcrumbs/breadcrumbs.component";
4

    
5
@Component({
6
  selector: 'resources',
7
  templateUrl: 'resources.component.html',
8
  styleUrls: ['resources.component.css'],
9
})
10
export class ResourcesComponent implements OnInit {
11
  
12
  public breadcrumbs: Breadcrumb[] = [
13
    {
14
      name: 'home',
15
      route: '/'
16
    },
17
    {
18
      name: 'resources'
19
    }
20
  ];
21
  
22
  constructor(private title: Title) {
23
  }
24
  
25
  ngOnInit() {
26
    this.title.setTitle('OpenAIRE - Research Graph | Resources');
27
  }
28
}
(3-3/4)