mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-25 02:36:10 +01:00
Crude header with no styles.
This commit is contained in:
parent
65b9d7e537
commit
27dcebeba2
10 changed files with 37 additions and 84 deletions
|
|
@ -1,3 +1 @@
|
|||
/**
|
||||
* Created by Andrey_Grabowsky on 20.04.16.
|
||||
*/
|
||||
export * from './pageTop';
|
||||
|
|
|
|||
1
src/app/theme/pageTop/index.ts
Normal file
1
src/app/theme/pageTop/index.ts
Normal file
|
|
@ -0,0 +1 @@
|
|||
export * from './pageTop.component';
|
||||
8
src/app/theme/pageTop/pageTop.component.ts
Normal file
8
src/app/theme/pageTop/pageTop.component.ts
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
import {Component, ViewEncapsulation} from 'angular2/core';
|
||||
|
||||
@Component({
|
||||
selector: 'page-top',
|
||||
styles: [ require('./pageTop.scss') ],
|
||||
template: require('./pageTop.html')
|
||||
})
|
||||
export class PageTop {}
|
||||
24
src/app/theme/pageTop/pageTop.html
Normal file
24
src/app/theme/pageTop/pageTop.html
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<div class="page-top clearfix" scroll-position="scrolled" max-height="50" ng-class="{'scrolled': scrolled}">
|
||||
<a href="#/dashboard" class="al-logo clearfix"><span>Blur</span>Admin</a>
|
||||
<a href class="collapse-menu-link ion-navicon" ng-click="isMenuCollapsed=!isMenuCollapsed"></a>
|
||||
|
||||
<div class="search">
|
||||
<i class="ion-ios-search-strong" ng-click="startSearch()"></i>
|
||||
<input id="searchInput" type="text" placeholder="Search for...">
|
||||
</div>
|
||||
|
||||
<div class="user-profile clearfix">
|
||||
<div class="al-user-profile" uib-dropdown>
|
||||
<a uib-dropdown-toggle class="profile-toggle-link">
|
||||
<img src="https://encrypted-tbn2.gstatic.com/images?q=tbn:ANd9GcT7vR66BWT_HdVJpwxGJoGBJl5HYfiSKDrsYrzw7kqf2yP6sNyJtHdaAQ"/>
|
||||
</a>
|
||||
<ul class="top-dropdown-menu profile-dropdown" uib-dropdown-menu>
|
||||
<li><i class="dropdown-arr"></i></li>
|
||||
<li><a href="#/profile"><i class="fa fa-user"></i>Profile</a></li>
|
||||
<li><a href><i class="fa fa-cog"></i>Settings</a></li>
|
||||
<li><a href class="signout"><i class="fa fa-power-off"></i>Sign out</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<msg-center></msg-center>
|
||||
</div>
|
||||
</div>
|
||||
0
src/app/theme/pageTop/pageTop.scss
Normal file
0
src/app/theme/pageTop/pageTop.scss
Normal file
|
|
@ -1,3 +0,0 @@
|
|||
/**
|
||||
* Created by Andrey_Grabowsky on 20.04.16.
|
||||
*/
|
||||
Loading…
Add table
Add a link
Reference in a new issue