aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/@theme/components/footer/footer.component.ts
blob: a743562e16668f9db67c1e0303f833bef6e2db33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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 - 2018
    </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 {
}