-
Notifications
You must be signed in to change notification settings - Fork 0
/
top_menu.html
142 lines (142 loc) · 7.3 KB
/
top_menu.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<nav class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#sidebar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- <a id="menu-medium" class="sidebar-toggle tooltips"> ng-bug -->
<a class="sidebar-toggle">
<i class="fa fa-outdent"></i>
</a>
<a class="navbar-brand" href="#/">
<img src="assets/img/logo.png" alt="logo" width="150" height="32">
</a>
</div>
<div class="navbar-center">{{ title }}</div>
<div class="navbar-collapse collapse">
<!-- BEGIN TOP NAVIGATION MENU -->
<ul class="nav navbar-nav pull-right header-menu">
<!-- BEGIN NOTIFICATION DROPDOWN -->
<li class="dropdown" id="notifications-header">
<a href="" class="dropdown-toggle" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<i class="glyph-icon flaticon-notifications"></i>
<span class="badge badge-danger badge-header">6</span>
</a>
<ul class="dropdown-menu">
<li class="dropdown-header clearfix">
<p class="pull-left">Notifications</p>
</li>
<li>
<ul class="dropdown-menu-list withScroll" data-height="220">
<li>
<a href="">
<i class="fa fa-star p-r-10 f-18 c-orange"></i>
Steve have rated your photo
<span class="dropdown-time">Just now</span>
</a>
</li>
<li>
<a href="">
<i class="fa fa-heart p-r-10 f-18 c-red"></i>
John added you to his favs
<span class="dropdown-time">15 mins</span>
</a>
</li>
<li>
<a href="">
<i class="fa fa-file-text p-r-10 f-18"></i>
New document available
<span class="dropdown-time">22 mins</span>
</a>
</li>
<li>
<a href="">
<i class="fa fa-picture-o p-r-10 f-18 c-blue"></i>
New picture added
<span class="dropdown-time">40 mins</span>
</a>
</li>
<li>
<a href="">
<i class="fa fa-bell p-r-10 f-18 c-orange"></i>
Meeting in 1 hour
<span class="dropdown-time">1 hour</span>
</a>
</li>
<li>
<a href="">
<i class="fa fa-bell p-r-10 f-18"></i>
Server 5 overloaded
<span class="dropdown-time">2 hours</span>
</a>
</li>
<li>
<a href="">
<i class="fa fa-comment p-r-10 f-18 c-gray"></i>
Bill comment your post
<span class="dropdown-time">3 hours</span>
</a>
</li>
<li>
<a href="">
<i class="fa fa-picture-o p-r-10 f-18 c-blue"></i>
New picture added
<span class="dropdown-time">2 days</span>
</a>
</li>
</ul>
</li>
<li class="dropdown-footer clearfix">
<a href="" class="pull-left">See all notifications</a>
<a href="" class="pull-right">
<i class="fa fa-cog"></i>
</a>
</li>
</ul>
</li>
<!-- END NOTIFICATION DROPDOWN -->
<!-- BEGIN USER DROPDOWN -->
<li class="dropdown" id="user-header">
<a href="" class="dropdown-toggle c-white" data-toggle="dropdown" data-hover="dropdown" data-close-others="true">
<img src="assets/img/avatars/avatar4.png" alt="user avatar" width="30" class="p-r-5">
<span class="username">Abdou Test</span>
<i class="fa fa-angle-down p-r-10"></i>
</a>
<ul class="dropdown-menu">
<li>
<a href="extra_profile.html">
<i class="glyph-icon flaticon-account"></i> My Profile
</a>
</li>
<li>
<a href="calendar.html">
<i class="glyph-icon flaticon-calendar"></i> My Calendar
</a>
</li>
<li>
<a href="calendar.html">
<i class="glyph-icon flaticon-settings21"></i> Account Settings
</a>
</li>
<li class="dropdown-footer clearfix">
<a href="javascript:;" class="toggle_fullscreen" title="Fullscreen">
<i class="glyph-icon flaticon-fullscreen3"></i>
</a>
<a href="lockscreen.html" title="Lock Screen">
<i class="glyph-icon flaticon-padlock23"></i>
</a>
<a href="login.html" title="Logout">
<i class="fa fa-power-off"></i>
</a>
</li>
</ul>
</li>
<!-- END USER DROPDOWN -->
</ul>
<!-- END TOP NAVIGATION MENU -->
</div>
</div>
</nav>