aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/@theme/components/footer/footer.component.ts
blob: 8e1e825ed66eef8d9d913006bc180873be0d0d51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { Component } from '@angular/core';

@Component({
  selector: 'ngx-footer',
  styleUrls: ['./footer.component.scss'],
  template: `
    <span class="created-by">Created by
    <b><a href="http://iot.bzh" target="_blank">IoT.bzh</a></b> 2017
    &nbsp;&nbsp;
    <span style="font-size: small;">(powered by <a href="https://github.com/akveo/ngx-admin" target="_blank">akveo/ngx-admin</a>)</span>
    </span>
    <!-- MODS_XDS
    <div class="socials">
      <a href="#" target="_blank" class="ion ion-social-github"></a>
      <a href="#" target="_blank" class="ion ion-social-facebook"></a>
      <a href="#" target="_blank" class="ion ion-social-twitter"></a>
      <a href="#" target="_blank" class="ion ion-social-linkedin"></a>
    </div>
    -->
  `,
})
export class FooterComponent {
}