2016-05-11 17:38:01 +03:00
|
|
|
import {Component, ViewEncapsulation} from '@angular/core';
|
2016-05-18 17:38:46 +03:00
|
|
|
import {BaPageTop, BaContentTop, BaSidebar, BaBackTop} from '../theme/components';
|
2016-04-21 20:34:07 +03:00
|
|
|
|
|
|
|
|
@Component({
|
2016-04-29 17:08:05 +03:00
|
|
|
selector: 'pages',
|
|
|
|
|
encapsulation: ViewEncapsulation.None,
|
|
|
|
|
styles: [],
|
2016-05-18 17:38:46 +03:00
|
|
|
directives: [BaPageTop, BaSidebar, BaContentTop, BaBackTop],
|
2016-05-02 14:08:32 +03:00
|
|
|
template: `
|
2016-05-18 17:38:46 +03:00
|
|
|
<ba-sidebar></ba-sidebar>
|
2016-05-18 17:19:24 +03:00
|
|
|
<ba-page-top></ba-page-top>
|
2016-05-02 14:08:32 +03:00
|
|
|
<div class="al-main">
|
|
|
|
|
<div class="al-content">
|
2016-05-18 17:04:35 +03:00
|
|
|
<ba-content-top></ba-content-top>
|
2016-05-02 14:08:32 +03:00
|
|
|
<router-outlet></router-outlet>
|
|
|
|
|
</div>
|
2016-05-13 17:19:15 +03:00
|
|
|
</div>
|
|
|
|
|
<footer class="al-footer clearfix">
|
|
|
|
|
<div class="al-footer-right">Created with <i class="ion-heart"></i></div>
|
|
|
|
|
<div class="al-footer-main clearfix">
|
2016-05-19 14:58:50 +03:00
|
|
|
<div class="al-copy">© <a href="http://akveo.com">Akveo</a> 2016</div>
|
2016-05-13 17:19:15 +03:00
|
|
|
<ul class="al-share clearfix">
|
|
|
|
|
<li><i class="socicon socicon-facebook"></i></li>
|
|
|
|
|
<li><i class="socicon socicon-twitter"></i></li>
|
|
|
|
|
<li><i class="socicon socicon-google"></i></li>
|
|
|
|
|
<li><i class="socicon socicon-github"></i></li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|
2016-05-13 17:49:28 +03:00
|
|
|
<ba-back-top position="200"></ba-back-top>
|
2016-05-13 17:19:15 +03:00
|
|
|
`
|
2016-04-21 20:34:07 +03:00
|
|
|
})
|
|
|
|
|
export class Pages {
|
|
|
|
|
|
2016-05-02 12:45:56 +03:00
|
|
|
constructor() {
|
2016-04-29 17:27:19 +03:00
|
|
|
}
|
2016-04-29 17:08:05 +03:00
|
|
|
|
2016-04-29 17:27:19 +03:00
|
|
|
ngOnInit() {
|
|
|
|
|
}
|
2016-04-27 13:17:51 +03:00
|
|
|
}
|