Last active
December 5, 2018 17:52
-
-
Save devmeireles/bf5b7699ef40e8cddea2ab114edca5f2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<!-- Required meta tags--> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta name="description" content="au theme template"> | |
<meta name="author" content="Hau Nguyen"> | |
<meta name="keywords" content="au theme template"> | |
<!-- Title Page--> | |
<title>Dashboard</title> | |
<!-- Fontfaces CSS--> | |
<link href="{{asset('public/css/font-face.css')}}" rel="stylesheet" media="all"> | |
<link href="{{asset('public/vendor/font-awesome-4.7/css/font-awesome.min.css')}}" rel="stylesheet" media="all"> | |
<link href="{{asset('public/vendor/font-awesome-5/css/fontawesome-all.min.css')}}" rel="stylesheet" media="all"> | |
<link href="{{asset('public/vendor/mdi-font/css/material-design-iconic-font.min.css')}}" rel="stylesheet" media="all"> | |
<!-- Bootstrap CSS--> | |
<link href="{{asset('public/vendor/bootstrap-4.1/bootstrap.min.css')}}" rel="stylesheet" media="all"> | |
<!-- Vendor CSS--> | |
<link href="{{asset('public/vendor/animsition/animsition.min.css')}}" rel="stylesheet" media="all"> | |
<link href="{{asset('public/vendor/bootstrap-progressbar/bootstrap-progressbar-3.3.4.min.css')}}" rel="stylesheet" media="all"> | |
<link href="{{asset('public/vendor/wow/animate.css" rel="stylesheet')}}" media="all"> | |
<link href="{{asset('public/vendor/css-hamburgers/hamburgers.min.css')}}" rel="stylesheet" media="all"> | |
<link href="{{asset('public/vendor/slick/slick.css" rel="stylesheet')}}" media="all"> | |
<link href="{{asset('public/vendor/select2/select2.min.css" rel="stylesheet')}}" media="all"> | |
<link href="{{asset('public/vendor/perfect-scrollbar/perfect-scrollbar.css')}}" rel="stylesheet" media="all"> | |
<!-- Main CSS--> | |
<link href="{{asset('public/css/theme.css')}}" rel="stylesheet" media="all"> | |
<link href="{{asset('public/css/style.css')}}" rel="stylesheet" media="all"> | |
</head> | |
<body class="animsition"> | |
<div class="page-wrapper"> | |
<!-- HEADER MOBILE--> | |
<header class="header-mobile d-block d-lg-none"> | |
<div class="header-mobile__bar"> | |
<div class="container-fluid"> | |
<div class="header-mobile-inner"> | |
<a class="logo" href="index.html"> | |
<img src="images/icon/logo.png" alt="CoolAdmin" /> | |
</a> | |
<button class="hamburger hamburger--slider" type="button"> | |
<span class="hamburger-box"> | |
<span class="hamburger-inner"></span> | |
</span> | |
</button> | |
</div> | |
</div> | |
</div> | |
<nav class="navbar-mobile"> | |
<div class="container-fluid"> | |
<ul class="navbar-mobile__list list-unstyled"> | |
<li> | |
<a href="map.html"> | |
<i class="fas fa-map-marker-alt"></i>Maps</a> | |
</li> | |
<li class="has-sub"> | |
<a class="js-arrow" href="#"> | |
<i class="fas fa-copy"></i>Pages</a> | |
<ul class="navbar-mobile-sub__list list-unstyled js-sub-list"> | |
<li> | |
<a href="login.html">Login</a> | |
</li> | |
<li> | |
<a href="register.html">Register</a> | |
</li> | |
<li> | |
<a href="forget-pass.html">Forget Password</a> | |
</li> | |
</ul> | |
</li> | |
</ul> | |
</div> | |
</nav> | |
</header> | |
<!-- END HEADER MOBILE--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment