-
Notifications
You must be signed in to change notification settings - Fork 724
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from timcreative/masterGit
added template page for Youtube Video tutorial (link coming soon)
- Loading branch information
Showing
2 changed files
with
158 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<link rel="icon" type="image/png" href="assets/img/favicon.ico"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
|
||
<title>Light Bootstrap Dashboard by Creative Tim</title> | ||
|
||
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' name='viewport' /> | ||
<meta name="viewport" content="width=device-width" /> | ||
|
||
|
||
<!-- Bootstrap core CSS --> | ||
<link href="assets/css/bootstrap.min.css" rel="stylesheet" /> | ||
|
||
<!-- Animation library for notifications --> | ||
<link href="assets/css/animate.min.css" rel="stylesheet"/> | ||
|
||
<!-- Light Bootstrap Table core CSS --> | ||
<link href="assets/css/light-bootstrap-dashboard.css" rel="stylesheet"/> | ||
|
||
<!-- Fonts and icons --> | ||
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> | ||
<link href='http://fonts.googleapis.com/css?family=Roboto:400,700,300' rel='stylesheet' type='text/css'> | ||
<link href="assets/css/pe-icon-7-stroke.css" rel="stylesheet" /> | ||
|
||
</head> | ||
<body> | ||
|
||
<div class="wrapper"> | ||
<div class="sidebar" data-color="purple" data-image="assets/img/sidebar-5.jpg"> | ||
|
||
<!-- | ||
Tip 1: you can change the color of the sidebar using: data-color="blue | azure | green | orange | red | purple" | ||
Tip 2: you can also add an image using data-image tag | ||
--> | ||
|
||
<div class="sidebar-wrapper"> | ||
<div class="logo"> | ||
<a href="http://www.creative-tim.com" class="simple-text"> | ||
Creative Tim | ||
</a> | ||
</div> | ||
|
||
<ul class="nav"> | ||
<li class="active"> | ||
<a href="dashboard.html"> | ||
<i class="pe-7s-graph"></i> | ||
<p>Dashboard</p> | ||
</a> | ||
</li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
|
||
<div class="main-panel"> | ||
<nav class="navbar navbar-default navbar-fixed"> | ||
<div class="container-fluid"> | ||
<div class="navbar-header"> | ||
<button type="button" class="navbar-toggle" data-toggle="collapse"> | ||
<span class="sr-only">Toggle navigation</span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<a class="navbar-brand" href="#">Dashboard</a> | ||
</div> | ||
<div class="collapse navbar-collapse"> | ||
<ul class="nav navbar-nav navbar-left"> | ||
<li> | ||
<a href="#" class="dropdown-toggle" data-toggle="dropdown"> | ||
<i class="fa fa-dashboard"></i> | ||
</a> | ||
</li> | ||
</ul> | ||
|
||
<ul class="nav navbar-nav navbar-right"> | ||
<li> | ||
<a href=""> | ||
Account | ||
</a> | ||
</li> | ||
|
||
|
||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
|
||
<div class="content"> | ||
<div class="container-fluid"> | ||
<div class="row"> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
<footer class="footer"> | ||
<div class="container-fluid"> | ||
<nav class="pull-left"> | ||
<ul> | ||
<li> | ||
<a href="#"> | ||
Home | ||
</a> | ||
</li> | ||
|
||
</ul> | ||
</nav> | ||
<p class="copyright pull-right"> | ||
© 2016 <a href="http://www.creative-tim.com">Creative Tim</a>, made with love for a better web | ||
</p> | ||
</div> | ||
</footer> | ||
|
||
</div> | ||
</div> | ||
|
||
|
||
</body> | ||
|
||
<!-- Core JS Files --> | ||
<script src="assets/js/jquery-1.10.2.js" type="text/javascript"></script> | ||
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script> | ||
|
||
<!-- Checkbox, Radio & Switch Plugins --> | ||
<script src="assets/js/bootstrap-checkbox-radio-switch.js"></script> | ||
|
||
<!-- Charts Plugin --> | ||
<script src="assets/js/chartist.min.js"></script> | ||
|
||
<!-- Notifications Plugin --> | ||
<script src="assets/js/bootstrap-notify.js"></script> | ||
|
||
<!-- Google Maps Plugin --> | ||
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?sensor=false"></script> | ||
|
||
<!-- Light Bootstrap Table Core javascript and methods for Demo purpose --> | ||
<script src="assets/js/light-bootstrap-dashboard.js"></script> | ||
|
||
<!-- Light Bootstrap Table DEMO methods, don't include it in your project! --> | ||
<script src="assets/js/demo.js"></script> | ||
|
||
|
||
</html> |