26 lines
777 B
TypeScript
26 lines
777 B
TypeScript
import { Component, Input, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'agm-footer',
|
|
template: `
|
|
<div class="footer">
|
|
<div class="card clearfix">
|
|
<!--div class="ui-g ui-g-12"-->
|
|
<!--div *ngIf="isLoggedIn" class="ui-g-6 ui-sm-12">
|
|
<span class="ui-icon ui-icon-copyright"></span><span>Copyright© 2019 AgNav Inc.</span>
|
|
</div-->
|
|
<!--div class="ui-g-6 ui-sm-12"-->
|
|
<agm-language-swicher *ngIf="showLang"></agm-language-swicher>
|
|
<!--/div-->
|
|
<!--/div-->
|
|
</div>
|
|
</div>
|
|
`
|
|
})
|
|
export class AppFooterComponent implements OnInit {
|
|
@Input() showLang: boolean;
|
|
|
|
ngOnInit() {
|
|
}
|
|
}
|