source: pro-violet-viettel/sourcecode/application/views/layout/admin/header.php @ 644

Last change on this file since 644 was 644, checked in by namnd, 10 years ago
File size: 3.3 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3        <head>
4                <meta charset="utf-8" />
5                <title>SBG|Admin</title>
6
7                <meta name="description" content="overview &amp; stats" />
8                <meta name="viewport" content="width=device-width, initial-scale=1.0" />
9
10                <link href="<?php echo $base_url;?>assets/css/bootstrap.min.css" rel="stylesheet" />
11                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/font-awesome.min.css" />
12
13                <!-- page specific plugin styles -->
14
15                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/jquery-ui-1.10.3.full.min.css" />
16                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/datepicker.css" />
17                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ui.jqgrid.css" />
18               
19                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace-fonts.css" />
20
21                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace.min.css" />
22                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace-rtl.min.css" />
23                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/ace-skins.min.css" />
24                <link rel="stylesheet" href="<?php echo $base_url;?>assets/css/custom.css" />
25                <script src="<?php echo $base_url;?>assets/js/ace-extra.min.js"></script>
26
27                <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
28
29                <!--[if lt IE 9]>
30                <script src="<?php echo $base_url;?>assets/js/html5shiv.js"></script>
31                <script src="<?php echo $base_url;?>assets/js/respond.min.js"></script>
32                <![endif]-->
33                <style>
34                        table a
35                        {
36                                cursor: pointer;
37                                font-size: 13px;
38                                font-weight: normal;
39                        }
40                </style>
41        </head>
42
43        <body>
44                <div class="navbar navbar-default navbar-fixed-top" id="navbar">
45                        <script type="text/javascript">
46                                try{ace.settings.check('navbar' , 'fixed')}catch(e){}
47                        </script>
48
49                        <div class="navbar-container" id="navbar-container">
50                                <div class="navbar-header pull-left">
51                                        <a href="#" class="navbar-brand">
52                                                <img src="<?php echo $base_url;?>assets/img/logo_soanbai_online_white.png" width="350" class="img-responsive">
53                                        </a><!-- /.brand -->
54                                </div><!-- /.navbar-header -->
55
56                                <div class="navbar-header pull-right" role="navigation">
57                                        <ul class="nav ace-nav">
58                                                <li>
59                                                        <a data-toggle="dropdown" href="#" class="dropdown-toggle">
60                                                                <img class="nav-user-photo" src="<?php echo $base_url;?>assets/avatars/user.jpg" alt="Admin's Photo" />
61                                                                <span class="user-info">
62                                                                        <small>Xin chào,</small>
63                                                                        Admin
64                                                                </span>
65
66                                                                <i class="icon-caret-down"></i>
67                                                        </a>
68
69                                                        <ul class="user-menu pull-right dropdown-menu dropdown-yellow dropdown-caret dropdown-close">
70                                                                <li>
71                                                                        <a href="<?php echo $base_url; ?>admin/quan_tri_vien/thong_tin_ca_nhan">
72                                                                                <i class="icon-user"></i>
73                                                                                ThÃŽng tin cá nhân
74                                                                        </a>
75                                                                </li>
76
77                                                                <li class="divider"></li>
78
79                                                                <li>
80                                                                        <a href="<?php echo $base_url; ?>admin/home/logout">
81                                                                                <i class="icon-off"></i>
82                                                                                Thoát
83                                                                        </a>
84                                                                </li>
85                                                        </ul>
86                                                </li>
87                                        </ul><!-- /.ace-nav -->
88                                </div><!-- /.navbar-header -->
89                        </div><!-- /.container -->
90                </div>
91
92                <div class="main-container" id="main-container">
93                        <script type="text/javascript">
94                                try{ace.settings.check('main-container' , 'fixed')}catch(e){}
95                        </script>
Note: See TracBrowser for help on using the repository browser.