import { Component, ContentChild, TemplateRef, Input } from '@angular/core'; @Component({ selector: 'global-footer', template: ` `, styleUrls: [ './global-footer.less' ] }) export class GlobalFooterComponent { @Input() links: { title: string, href: string, blankTarget?: boolean }[]; @ContentChild('copyright') copyright: TemplateRef; }