forked from hacklcx/HFish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.html
94 lines (89 loc) ยท 4.08 KB
/
header.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
{{define "header"}}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/static/favicon.ico">
<title>HFish - ๆฉๅฑไผไธๅฎๅ
จๆต่ฏไธปๅจ่ฏฑๅฏผๅๅผๆบ่็ฝๆกๆถ็ณป็ป</title>
<link href="/static/css/style.css" rel="stylesheet" type="text/css"/>
<link href="/static/libs/bootstrap-sweetalert/sweet-alert.css" rel="stylesheet" type="text/css"/>
<link href="/static/libs/switchery/switchery.min.css" rel="stylesheet"/>
</head>
<body>
<!-- Navigation Bar-->
<header id="topnav">
<div class="topbar-main">
<div class="container">
<!-- LOGO -->
<div class="topbar-left">
<a href="/dashboard" class="logo">
<img src="/static/images/logo.png" style="width: 100px;margin-top: -5px;">
</a>
</div>
<div id="navigation" style="margin-left: 120px;">
<ul class="navigation-menu">
<li>
<a href="/dashboard"><i class="zmdi zmdi-view-dashboard icotop3"></i> <span> ไปช่กจ็ </span>
</a>
</li>
<li>
<a href="/fish"><i class="fa fa-user-secret "></i> <span> ไธ้ฉๅ่กจ </span> </a>
</li>
<li>
<a href="/colony"><i class="fa fa-cloud"></i> <span> ๅๅธๅผ้็พค </span> </a>
</li>
<li>
<a href="/mail"><i class="zmdi zmdi-email icotop3"></i> <span> ้ฎไปถ็พคๅ </span> </a>
</li>
<li>
<a href="/setting"><i class="fa fa-cog icotop3"></i> <span> ็ณป็ป่ฎพ็ฝฎ </span> </a>
</li>
</ul>
</div>
<div class="menu-extras">
<ul class="nav navbar-nav pull-right">
<li class="nav-item dropdown notification-list">
<a class="nav-link waves-effect waves-light right-bar-toggle" href="javascript:void(0);">
<i class="zmdi zmdi-format-subject noti-icon"></i>
</a>
</li>
<li class="nav-item dropdown notification-list">
<a class="nav-link dropdown-toggle arrow-none waves-effect waves-light nav-user"
data-toggle="dropdown" href="#" role="button"
aria-haspopup="false" aria-expanded="false">
<img src="/static/images/avatar.jpg" alt="user" class="img-circle avatarx">
</a>
<div class="dropdown-menu dropdown-menu-right dropdown-arrow profile-dropdown "
aria-labelledby="Preview">
<!-- item-->
<div class="dropdown-item noti-title">
<h5 class="text-overflow">
<small>Welcome ! You</small>
</h5>
</div>
<a href="https://hfish.io/docs" target="_blank" class="dropdown-item notify-item">
<i class="zmdi zmdi-help-outline"></i> <span>ๅธฎๅฉๆๆกฃ</span>
</a>
<!-- item-->
<a href="/logout" class="dropdown-item notify-item">
<i class="zmdi zmdi-power"></i> <span>ๆณจ้</span>
</a>
</div>
</li>
</ul>
</div> <!-- end menu-extras -->
<div class="clearfix"></div>
</div> <!-- end container -->
</div>
<!-- end topbar-main -->
<div class="navbar-custom">
<div class="container">
</div>
</div>
</header>
<!-- End Navigation Bar-->
<div class="wrapper">
<div class="container">
<!-- Page-Title -->
{{end}}