Showing
11 changed files
with
1211 additions
and
972 deletions
| ... | @@ -25,8 +25,8 @@ app.use(bodyParser.urlencoded({extended: true})); | ... | @@ -25,8 +25,8 @@ app.use(bodyParser.urlencoded({extended: true})); |
| 25 | app.get('/', function(req, res) { | 25 | app.get('/', function(req, res) { |
| 26 | // res.sendFile(__dirname + "/index.html"); | 26 | // res.sendFile(__dirname + "/index.html"); |
| 27 | // let posts = blogRealm.objects('Post').sorted('timestamp', true); | 27 | // let posts = blogRealm.objects('Post').sorted('timestamp', true); |
| 28 | - // res.render('index2.ejs',{posts: posts}); | 28 | +// res.render('index.ejs',{title : "첫번째 화면"}); |
| 29 | - res.sendFile(__dirname+"/pages/index.html"); | 29 | + res.sendFile(__dirname+"/pages/main.html"); |
| 30 | }); | 30 | }); |
| 31 | 31 | ||
| 32 | app.get('/login', function(req, res) { | 32 | app.get('/login', function(req, res) { | ... | ... |
images/background.jpg
0 → 100644
622 KB
index.html
deleted
100644 → 0
| 1 | -<!DOCTYPE html> | ||
| 2 | -<html> | ||
| 3 | -<head> | ||
| 4 | -<meta http-equiv="refresh" content="0;url=pages/index.html"> | ||
| 5 | -<title>SB Admin 2</title> | ||
| 6 | -<script language="javascript"> | ||
| 7 | - window.location.href = "pages/index.html" | ||
| 8 | -</script> | ||
| 9 | -</head> | ||
| 10 | -<body> | ||
| 11 | -Go to <a href="pages/index.html">/pages/index.html</a> | ||
| 12 | -</body> | ||
| 13 | -</html> |
| ... | @@ -11,17 +11,17 @@ | ... | @@ -11,17 +11,17 @@ |
| 11 | "license": "ISC", | 11 | "license": "ISC", |
| 12 | "dependencies": { | 12 | "dependencies": { |
| 13 | "body-parser": "^1.18.2", | 13 | "body-parser": "^1.18.2", |
| 14 | + "browser-sync": "^2.13.0", | ||
| 14 | "ejs": "^2.5.7", | 15 | "ejs": "^2.5.7", |
| 15 | "express": "^4.16.2", | 16 | "express": "^4.16.2", |
| 16 | - "realm": "^2.0.12", | ||
| 17 | - | ||
| 18 | - "browser-sync": "^2.13.0", | ||
| 19 | "gulp": "^3.9.1", | 17 | "gulp": "^3.9.1", |
| 20 | "gulp-clean-css": "^2.0.10", | 18 | "gulp-clean-css": "^2.0.10", |
| 21 | "gulp-header": "^1.8.7", | 19 | "gulp-header": "^1.8.7", |
| 22 | "gulp-less": "^3.1.0", | 20 | "gulp-less": "^3.1.0", |
| 23 | "gulp-rename": "^1.2.2", | 21 | "gulp-rename": "^1.2.2", |
| 24 | - "gulp-uglify": "^1.5.4" | 22 | + "gulp-uglify": "^1.5.4", |
| 23 | + "node-bittrex-api": "^0.8.1", | ||
| 24 | + "realm": "^2.0.12" | ||
| 25 | }, | 25 | }, |
| 26 | "devDependencies": { | 26 | "devDependencies": { |
| 27 | "nodemon": "^1.12.5" | 27 | "nodemon": "^1.12.5" | ... | ... |
| ... | @@ -469,6 +469,7 @@ | ... | @@ -469,6 +469,7 @@ |
| 469 | <p>Flot is a pure JavaScript plotting library for jQuery, with a focus on simple usage, attractive looks, and interactive features. In SB Admin, we are using the most recent version of Flot along with a few plugins to enhance the user experience. The Flot plugins being used are the tooltip plugin for hoverable tooltips, and the resize plugin for fully responsive charts. The documentation for Flot Charts is available on their website, <a target="_blank" href="http://www.flotcharts.org/">http://www.flotcharts.org/</a>.</p> | 469 | <p>Flot is a pure JavaScript plotting library for jQuery, with a focus on simple usage, attractive looks, and interactive features. In SB Admin, we are using the most recent version of Flot along with a few plugins to enhance the user experience. The Flot plugins being used are the tooltip plugin for hoverable tooltips, and the resize plugin for fully responsive charts. The documentation for Flot Charts is available on their website, <a target="_blank" href="http://www.flotcharts.org/">http://www.flotcharts.org/</a>.</p> |
| 470 | <a target="_blank" class="btn btn-default btn-lg btn-block" href="http://www.flotcharts.org/">View Flot Charts Documentation</a> | 470 | <a target="_blank" class="btn btn-default btn-lg btn-block" href="http://www.flotcharts.org/">View Flot Charts Documentation</a> |
| 471 | </div> | 471 | </div> |
| 472 | + | ||
| 472 | <!-- /.panel-body --> | 473 | <!-- /.panel-body --> |
| 473 | </div> | 474 | </div> |
| 474 | <!-- /.panel --> | 475 | <!-- /.panel --> | ... | ... |
| 1 | -<!DOCTYPE html> | 1 | +<!-- <!DOCTYPE html> |
| 2 | <html lang="en"> | 2 | <html lang="en"> |
| 3 | <!-- 합쳐지고 최소화된 최신 CSS --> | 3 | <!-- 합쳐지고 최소화된 최신 CSS --> |
| 4 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> | 4 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> |
| ... | @@ -943,4 +943,4 @@ | ... | @@ -943,4 +943,4 @@ |
| 943 | 943 | ||
| 944 | </body> | 944 | </body> |
| 945 | 945 | ||
| 946 | -</html> | 946 | +</html> --> | ... | ... |
pages/index2.html
0 → 100644
| 1 | + | ||
| 2 | +<!DOCTYPE html> | ||
| 3 | +<html lang="en"> | ||
| 4 | +<!-- 합쳐지고 최소화된 최신 CSS --> | ||
| 5 | +<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> | ||
| 6 | + | ||
| 7 | +<!-- 부가적인 테마 --> | ||
| 8 | +<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> | ||
| 9 | + | ||
| 10 | +<!-- 합쳐지고 최소화된 최신 자바스크립트 --> | ||
| 11 | +<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> | ||
| 12 | + <head> | ||
| 13 | + <meta charset="utf-8"> | ||
| 14 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| 15 | + <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| 16 | + <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | ||
| 17 | + <meta name="description" content=""> | ||
| 18 | + <meta name="author" content=""> | ||
| 19 | + <link rel="icon" href="../../favicon.ico"> | ||
| 20 | + | ||
| 21 | + <title>Narrow Jumbotron Template for Bootstrap</title> | ||
| 22 | + | ||
| 23 | + <!-- Bootstrap core CSS --> | ||
| 24 | + <link href="../../dist/css/bootstrap.min.css" rel="stylesheet"> | ||
| 25 | + | ||
| 26 | + <!-- Custom styles for this template --> | ||
| 27 | + <link href="jumbotron-narrow.css" rel="stylesheet"> | ||
| 28 | + | ||
| 29 | + <!-- Just for debugging purposes. Don't actually copy these 2 lines! --> | ||
| 30 | + <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]--> | ||
| 31 | + <script src="../../assets/js/ie-emulation-modes-warning.js"></script> | ||
| 32 | + | ||
| 33 | + <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | ||
| 34 | + <!--[if lt IE 9]> | ||
| 35 | + <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | ||
| 36 | + <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | ||
| 37 | + <![endif]--> | ||
| 38 | + </head> | ||
| 39 | + | ||
| 40 | + <body> | ||
| 41 | + | ||
| 42 | + <div class="container"> | ||
| 43 | + <div class="header"> | ||
| 44 | + <nav> | ||
| 45 | + <ul class="nav nav-pills pull-right"> | ||
| 46 | + <li role="presentation" class="active"><a href="#">Home</a></li> | ||
| 47 | + <li role="presentation"><a href="#">About</a></li> | ||
| 48 | + <li role="presentation"><a href="#">Contact</a></li> | ||
| 49 | + </ul> | ||
| 50 | + </nav> | ||
| 51 | + <h3 class="text-muted">Project name</h3> | ||
| 52 | + </div> | ||
| 53 | + | ||
| 54 | + <div class="jumbotron"> | ||
| 55 | + <h1>Jumbotron heading</h1> | ||
| 56 | + <p class="lead">Cras justo odio, dapibus ac facilisis in, egestas eget quam. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus.</p> | ||
| 57 | + <p><a class="btn btn-lg btn-success" href="#" role="button">Sign up today</a></p> | ||
| 58 | + </div> | ||
| 59 | + | ||
| 60 | + <div class="row marketing"> | ||
| 61 | + <div class="col-lg-6"> | ||
| 62 | + <h4>Subheading</h4> | ||
| 63 | + <p>Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.</p> | ||
| 64 | + | ||
| 65 | + <h4>Subheading</h4> | ||
| 66 | + <p>Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.</p> | ||
| 67 | + | ||
| 68 | + <h4>Subheading</h4> | ||
| 69 | + <p>Maecenas sed diam eget risus varius blandit sit amet non magna.</p> | ||
| 70 | + </div> | ||
| 71 | + | ||
| 72 | + <div class="col-lg-6"> | ||
| 73 | + <h4>Subheading</h4> | ||
| 74 | + <p>Donec id elit non mi porta gravida at eget metus. Maecenas faucibus mollis interdum.</p> | ||
| 75 | + | ||
| 76 | + <h4>Subheading</h4> | ||
| 77 | + <p>Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Cras mattis consectetur purus sit amet fermentum.</p> | ||
| 78 | + | ||
| 79 | + <h4>Subheading</h4> | ||
| 80 | + <p>Maecenas sed diam eget risus varius blandit sit amet non magna.</p> | ||
| 81 | + </div> | ||
| 82 | + </div> | ||
| 83 | + | ||
| 84 | + <footer class="footer"> | ||
| 85 | + <p>© Company 2014</p> | ||
| 86 | + </footer> | ||
| 87 | + | ||
| 88 | + </div> <!-- /container --> | ||
| 89 | + | ||
| 90 | + | ||
| 91 | + <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> | ||
| 92 | + <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> | ||
| 93 | + </body> | ||
| 94 | +</html> |
pages/main.html
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> | ||
| 3 | + | ||
| 4 | +<!-- 부가적인 테마 --> | ||
| 5 | +<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> | ||
| 6 | + | ||
| 7 | +<!-- 합쳐지고 최소화된 최신 자바스크립트 --> | ||
| 8 | +<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> | ||
| 9 | +<html lang="en"> | ||
| 10 | + | ||
| 11 | + | ||
| 12 | + | ||
| 13 | + | ||
| 14 | +<head> | ||
| 15 | + <meta charset="utf-8"> | ||
| 16 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| 17 | + <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| 18 | + <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> | ||
| 19 | + <meta name="description" content=""> | ||
| 20 | + <meta name="author" content=""> | ||
| 21 | + <link rel="icon" href="../../favicon.ico"> | ||
| 22 | + | ||
| 23 | + <title>Coin Community</title> | ||
| 24 | + | ||
| 25 | + <!-- Bootstrap core CSS --> | ||
| 26 | + <link href="../../dist/css/bootstrap.min.css" rel="stylesheet"> | ||
| 27 | + | ||
| 28 | + <!-- Custom styles for this template --> | ||
| 29 | + <link href="navbar-fixed-top.css" rel="stylesheet"> | ||
| 30 | + | ||
| 31 | + <!-- Just for debugging purposes. Don't actually copy these 2 lines! --> | ||
| 32 | + <!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]--> | ||
| 33 | + <script src="../../assets/js/ie-emulation-modes-warning.js"></script> | ||
| 34 | + | ||
| 35 | + <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | ||
| 36 | + <!--[if lt IE 9]> | ||
| 37 | + <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | ||
| 38 | + <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | ||
| 39 | + <![endif]--> | ||
| 40 | +</head> | ||
| 41 | + | ||
| 42 | +<body> | ||
| 43 | + <!-- <style type = "text/css"> | ||
| 44 | + .jumbotron{ | ||
| 45 | + background-image: url('images/background.jpg'); | ||
| 46 | + background-size: cover; | ||
| 47 | + text-shadow: black 0.2em 0.2em 0.2em; | ||
| 48 | + color: whites; | ||
| 49 | + } | ||
| 50 | + </style> --> | ||
| 51 | + <!-- Fixed navbar --> | ||
| 52 | + <nav class="navbar navbar-default"> | ||
| 53 | + <div class="container-fluid"> | ||
| 54 | + <!-- Brand and toggle get grouped for better mobile display --> | ||
| 55 | + <div class="navbar-header"> | ||
| 56 | + <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> | ||
| 57 | + <span class="sr-only">Toggle navigation</span> | ||
| 58 | + <span class="icon-bar"></span> | ||
| 59 | + <span class="icon-bar"></span> | ||
| 60 | + <span class="icon-bar"></span> | ||
| 61 | + </button> | ||
| 62 | + <a class="navbar-brand" href="#">Coin Community</a> | ||
| 63 | + </div> | ||
| 64 | + | ||
| 65 | + <!-- Collect the nav links, forms, and other content for toggling --> | ||
| 66 | + <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1"> | ||
| 67 | + <ul class="nav navbar-nav"> | ||
| 68 | + <li class="active"><a href="#">View Chart <span class="sr-only">(current)</span></a></li> | ||
| 69 | + <li><a href="#">Freeboard</a></li> | ||
| 70 | + | ||
| 71 | + </ul> | ||
| 72 | + <form class="navbar-form navbar-left" role="search"> | ||
| 73 | + <div class="form-group"> | ||
| 74 | + <input type="text" class="form-control" placeholder="Search"> | ||
| 75 | + </div> | ||
| 76 | + <button type="submit" class="btn btn-default">Search</button> | ||
| 77 | + </form> | ||
| 78 | + <ul class="nav navbar-nav navbar-right"> | ||
| 79 | + <li><a href="#">Login</a></li> | ||
| 80 | + <li><a href="#">About us</a></li> | ||
| 81 | + | ||
| 82 | + </ul> | ||
| 83 | + </div> | ||
| 84 | + <!-- /.navbar-collapse --> | ||
| 85 | + </div> | ||
| 86 | + <!-- /.container-fluid --> | ||
| 87 | + </nav> | ||
| 88 | + | ||
| 89 | + <div class="container"> | ||
| 90 | + | ||
| 91 | + <!-- Main component for a primary marketing message or call to action --> | ||
| 92 | + <div class="jumbotron"> | ||
| 93 | + <h1>Navbar example</h1> | ||
| 94 | + <p>This example is a quick exercise to illustrate how the default, static and fixed to top navbar work. It includes the responsive CSS and HTML, so it also adapts to your viewport and device.</p> | ||
| 95 | + <p>To see the difference between static and fixed top navbars, just scroll.</p> | ||
| 96 | + <p> | ||
| 97 | + <a class="btn btn-lg btn-primary" href="http://localhost:3000/login" role="button">View navbar docs »</a> | ||
| 98 | + </p> | ||
| 99 | + </div> | ||
| 100 | + <div class="col-lg-12"> | ||
| 101 | + <div class="panel panel-default"> | ||
| 102 | + <div class="panel-heading"> | ||
| 103 | + Line Chart Example | ||
| 104 | + </div> | ||
| 105 | + <!-- /.panel-heading --> | ||
| 106 | + <div class="panel-body"> | ||
| 107 | + <div class="flot-chart"> | ||
| 108 | + <div class="flot-chart-content" id="flot-line-chart"></div> | ||
| 109 | + </div> | ||
| 110 | + </div> | ||
| 111 | + <!-- /.panel-body --> | ||
| 112 | + </div> | ||
| 113 | + <!-- /.panel --> | ||
| 114 | + </div> | ||
| 115 | + </div> | ||
| 116 | + <!-- /container --> | ||
| 117 | + | ||
| 118 | + <script src="https://mining-profit.com/js/mp-btc-chart.js"></script> | ||
| 119 | + <script type="text/javascript"> | ||
| 120 | + MiningProfitBTCChart.setChartWidth(550); | ||
| 121 | + MiningProfitBTCChart.setChartHeight(400); | ||
| 122 | + MiningProfitBTCChart.isDisplayControlRanges(true); | ||
| 123 | + MiningProfitBTCChart.isDisplayControlInterval(false); | ||
| 124 | + MiningProfitBTCChart.setInitialRange('20h'); | ||
| 125 | + MiningProfitBTCChart.setChartRanges(['6h', '10h', '20h', '2d', '1w', '2w', '1m']); | ||
| 126 | + MiningProfitBTCChart.setChartExchanges([{mpvaluation: '#428bca'}, {bitstamp: '#B4CD3E'}, {coinbase: '#D54E88'}, {btce: '#F0522B'}]); | ||
| 127 | + MiningProfitBTCChart.setInitialExchange('coinbase'); | ||
| 128 | + MiningProfitBTCChart.setMajorColor('rgb(35, 119, 58)'); | ||
| 129 | + MiningProfitBTCChart.draw(); | ||
| 130 | + </script> | ||
| 131 | + <!-- Bootstrap core JavaScript | ||
| 132 | + ================================================== --> | ||
| 133 | + <!-- Placed at the end of the document so the pages load faster --> | ||
| 134 | + <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> | ||
| 135 | + <script src="../../dist/js/bootstrap.min.js"></script> | ||
| 136 | + <!-- IE10 viewport hack for Surface/desktop Windows 8 bug --> | ||
| 137 | + <script src="../../assets/js/ie10-viewport-bug-workaround.js"></script> | ||
| 138 | + <script scr="https://code.jquery.com/jquery-3.1.1.min.js"></script> | ||
| 139 | + <script src="js/bootstrap.js"></script> | ||
| 140 | +</body> | ||
| 141 | + | ||
| 142 | +</html> |
pages/new.html
0 → 100644
| 1 | +<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> | ||
| 2 | + | ||
| 3 | +<!-- 부가적인 테마 --> | ||
| 4 | +<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> | ||
| 5 | + | ||
| 6 | +<!-- 합쳐지고 최소화된 최신 자바스크립트 --> | ||
| 7 | +<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> | ||
| 8 | + | ||
| 9 | +<div class="jumbotron jumbotron-billboard"> | ||
| 10 | + <div class="img"></div> | ||
| 11 | + <div class="container"> | ||
| 12 | + <div class="row"> | ||
| 13 | + <div class="col-lg-12"> | ||
| 14 | + <h2>Jumbotron</h2> | ||
| 15 | + <p> | ||
| 16 | + Lorem ipsum is the best | ||
| 17 | + </p> | ||
| 18 | + <a href="#" class="btn btn-success btn-lg">Sign Up</a> | ||
| 19 | + </div> | ||
| 20 | + </div> | ||
| 21 | + </div> | ||
| 22 | +</div> |
| 1 | -<h2>Realm Blog</h2> | 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> | ||
| 3 | +<!-- 합쳐지고 최소화된 최신 CSS --> | ||
| 4 | +<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> | ||
| 2 | 5 | ||
| 3 | -<a href="/write">Write</a> | 6 | +<!-- 부가적인 테마 --> |
| 7 | +<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> | ||
| 4 | 8 | ||
| 5 | -<% for(var i=0; i<posts.length; i++) {%> | 9 | +<!-- 합쳐지고 최소화된 최신 자바스크립트 --> |
| 6 | -<h3><%= posts[i].title%></h3> | 10 | +<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> |
| 7 | -<p><%= posts[i].content%></p> | 11 | + |
| 8 | -<% } %> | 12 | +<head> |
| 13 | + | ||
| 14 | + <meta charset="utf-8"> | ||
| 15 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| 16 | + <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| 17 | + <meta name="description" content=""> | ||
| 18 | + <meta name="author" content=""> | ||
| 19 | + | ||
| 20 | + <title>Coin Community</title> | ||
| 21 | + | ||
| 22 | + <!-- Bootstrap Core CSS --> | ||
| 23 | + <link href="../vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
| 24 | + | ||
| 25 | + <!-- MetisMenu CSS --> | ||
| 26 | + <link href="../vendor/metisMenu/metisMenu.min.css" rel="stylesheet"> | ||
| 27 | + | ||
| 28 | + <!-- Custom CSS --> | ||
| 29 | + <link href="../dist/css/sb-admin-2.css" rel="stylesheet"> | ||
| 30 | + | ||
| 31 | + <!-- Morris Charts CSS --> | ||
| 32 | + <link href="../vendor/morrisjs/morris.css" rel="stylesheet"> | ||
| 33 | + | ||
| 34 | + <!-- Custom Fonts --> | ||
| 35 | + <link href="../vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> | ||
| 36 | + | ||
| 37 | + <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
| 38 | + <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | ||
| 39 | + <!--[if lt IE 9]> | ||
| 40 | + <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | ||
| 41 | + <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> | ||
| 42 | + <![endif]--> | ||
| 43 | + | ||
| 44 | +</head> | ||
| 45 | + | ||
| 46 | +<body> | ||
| 47 | + | ||
| 48 | + <div id="wrapper"> | ||
| 49 | + | ||
| 50 | + <!-- Navigation --> | ||
| 51 | + <nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0"> | ||
| 52 | + <div class="navbar-header"> | ||
| 53 | + <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | ||
| 54 | + <span class="sr-only">Toggle navigation</span> | ||
| 55 | + <span class="icon-bar"></span> | ||
| 56 | + <span class="icon-bar"></span> | ||
| 57 | + <span class="icon-bar"></span> | ||
| 58 | + </button> | ||
| 59 | + <a class="navbar-brand" href="index.html">SB Admin v2.0</a> | ||
| 60 | + </div> | ||
| 61 | + <!-- /.navbar-header --> | ||
| 62 | + | ||
| 63 | + <ul class="nav navbar-top-links navbar-right"> | ||
| 64 | + <li class="dropdown"> | ||
| 65 | + <a class="dropdown-toggle" data-toggle="dropdown" href="#"> | ||
| 66 | + <i class="fa fa-envelope fa-fw"></i> <i class="fa fa-caret-down"></i> | ||
| 67 | + </a> | ||
| 68 | + <ul class="dropdown-menu dropdown-messages"> | ||
| 69 | + <li> | ||
| 70 | + <a href="#"> | ||
| 71 | + <div> | ||
| 72 | + <strong>John Smith</strong> | ||
| 73 | + <span class="pull-right text-muted"> | ||
| 74 | + <em>Yesterday</em> | ||
| 75 | + </span> | ||
| 76 | + </div> | ||
| 77 | + <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div> | ||
| 78 | + </a> | ||
| 79 | + </li> | ||
| 80 | + <li class="divider"></li> | ||
| 81 | + <li> | ||
| 82 | + <a href="#"> | ||
| 83 | + <div> | ||
| 84 | + <strong>John Smith</strong> | ||
| 85 | + <span class="pull-right text-muted"> | ||
| 86 | + <em>Yesterday</em> | ||
| 87 | + </span> | ||
| 88 | + </div> | ||
| 89 | + <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div> | ||
| 90 | + </a> | ||
| 91 | + </li> | ||
| 92 | + <li class="divider"></li> | ||
| 93 | + <li> | ||
| 94 | + <a href="#"> | ||
| 95 | + <div> | ||
| 96 | + <strong>John Smith</strong> | ||
| 97 | + <span class="pull-right text-muted"> | ||
| 98 | + <em>Yesterday</em> | ||
| 99 | + </span> | ||
| 100 | + </div> | ||
| 101 | + <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div> | ||
| 102 | + </a> | ||
| 103 | + </li> | ||
| 104 | + <li class="divider"></li> | ||
| 105 | + <li> | ||
| 106 | + <a class="text-center" href="#"> | ||
| 107 | + <strong>Read All Messages</strong> | ||
| 108 | + <i class="fa fa-angle-right"></i> | ||
| 109 | + </a> | ||
| 110 | + </li> | ||
| 111 | + </ul> | ||
| 112 | + <!-- /.dropdown-messages --> | ||
| 113 | + </li> | ||
| 114 | + <!-- /.dropdown --> | ||
| 115 | + <li class="dropdown"> | ||
| 116 | + <a class="dropdown-toggle" data-toggle="dropdown" href="#"> | ||
| 117 | + <i class="fa fa-tasks fa-fw"></i> <i class="fa fa-caret-down"></i> | ||
| 118 | + </a> | ||
| 119 | + <ul class="dropdown-menu dropdown-tasks"> | ||
| 120 | + <li> | ||
| 121 | + <a href="#"> | ||
| 122 | + <div> | ||
| 123 | + <p> | ||
| 124 | + <strong>Task 1</strong> | ||
| 125 | + <span class="pull-right text-muted">40% Complete</span> | ||
| 126 | + </p> | ||
| 127 | + <div class="progress progress-striped active"> | ||
| 128 | + <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"> | ||
| 129 | + <span class="sr-only">40% Complete (success)</span> | ||
| 130 | + </div> | ||
| 131 | + </div> | ||
| 132 | + </div> | ||
| 133 | + </a> | ||
| 134 | + </li> | ||
| 135 | + <li class="divider"></li> | ||
| 136 | + <li> | ||
| 137 | + <a href="#"> | ||
| 138 | + <div> | ||
| 139 | + <p> | ||
| 140 | + <strong>Task 2</strong> | ||
| 141 | + <span class="pull-right text-muted">20% Complete</span> | ||
| 142 | + </p> | ||
| 143 | + <div class="progress progress-striped active"> | ||
| 144 | + <div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"> | ||
| 145 | + <span class="sr-only">20% Complete</span> | ||
| 146 | + </div> | ||
| 147 | + </div> | ||
| 148 | + </div> | ||
| 149 | + </a> | ||
| 150 | + </li> | ||
| 151 | + <li class="divider"></li> | ||
| 152 | + <li> | ||
| 153 | + <a href="#"> | ||
| 154 | + <div> | ||
| 155 | + <p> | ||
| 156 | + <strong>Task 3</strong> | ||
| 157 | + <span class="pull-right text-muted">60% Complete</span> | ||
| 158 | + </p> | ||
| 159 | + <div class="progress progress-striped active"> | ||
| 160 | + <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"> | ||
| 161 | + <span class="sr-only">60% Complete (warning)</span> | ||
| 162 | + </div> | ||
| 163 | + </div> | ||
| 164 | + </div> | ||
| 165 | + </a> | ||
| 166 | + </li> | ||
| 167 | + <li class="divider"></li> | ||
| 168 | + <li> | ||
| 169 | + <a href="#"> | ||
| 170 | + <div> | ||
| 171 | + <p> | ||
| 172 | + <strong>Task 4</strong> | ||
| 173 | + <span class="pull-right text-muted">80% Complete</span> | ||
| 174 | + </p> | ||
| 175 | + <div class="progress progress-striped active"> | ||
| 176 | + <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%"> | ||
| 177 | + <span class="sr-only">80% Complete (danger)</span> | ||
| 178 | + </div> | ||
| 179 | + </div> | ||
| 180 | + </div> | ||
| 181 | + </a> | ||
| 182 | + </li> | ||
| 183 | + <li class="divider"></li> | ||
| 184 | + <li> | ||
| 185 | + <a class="text-center" href="#"> | ||
| 186 | + <strong>See All Tasks</strong> | ||
| 187 | + <i class="fa fa-angle-right"></i> | ||
| 188 | + </a> | ||
| 189 | + </li> | ||
| 190 | + </ul> | ||
| 191 | + <!-- /.dropdown-tasks --> | ||
| 192 | + </li> | ||
| 193 | + <!-- /.dropdown --> | ||
| 194 | + <li class="dropdown"> | ||
| 195 | + <a class="dropdown-toggle" data-toggle="dropdown" href="#"> | ||
| 196 | + <i class="fa fa-bell fa-fw"></i> <i class="fa fa-caret-down"></i> | ||
| 197 | + </a> | ||
| 198 | + <ul class="dropdown-menu dropdown-alerts"> | ||
| 199 | + <li> | ||
| 200 | + <a href="#"> | ||
| 201 | + <div> | ||
| 202 | + <i class="fa fa-comment fa-fw"></i> New Comment | ||
| 203 | + <span class="pull-right text-muted small">4 minutes ago</span> | ||
| 204 | + </div> | ||
| 205 | + </a> | ||
| 206 | + </li> | ||
| 207 | + <li class="divider"></li> | ||
| 208 | + <li> | ||
| 209 | + <a href="#"> | ||
| 210 | + <div> | ||
| 211 | + <i class="fa fa-twitter fa-fw"></i> 3 New Followers | ||
| 212 | + <span class="pull-right text-muted small">12 minutes ago</span> | ||
| 213 | + </div> | ||
| 214 | + </a> | ||
| 215 | + </li> | ||
| 216 | + <li class="divider"></li> | ||
| 217 | + <li> | ||
| 218 | + <a href="#"> | ||
| 219 | + <div> | ||
| 220 | + <i class="fa fa-envelope fa-fw"></i> Message Sent | ||
| 221 | + <span class="pull-right text-muted small">4 minutes ago</span> | ||
| 222 | + </div> | ||
| 223 | + </a> | ||
| 224 | + </li> | ||
| 225 | + <li class="divider"></li> | ||
| 226 | + <li> | ||
| 227 | + <a href="#"> | ||
| 228 | + <div> | ||
| 229 | + <i class="fa fa-tasks fa-fw"></i> New Task | ||
| 230 | + <span class="pull-right text-muted small">4 minutes ago</span> | ||
| 231 | + </div> | ||
| 232 | + </a> | ||
| 233 | + </li> | ||
| 234 | + <li class="divider"></li> | ||
| 235 | + <li> | ||
| 236 | + <a href="#"> | ||
| 237 | + <div> | ||
| 238 | + <i class="fa fa-upload fa-fw"></i> Server Rebooted | ||
| 239 | + <span class="pull-right text-muted small">4 minutes ago</span> | ||
| 240 | + </div> | ||
| 241 | + </a> | ||
| 242 | + </li> | ||
| 243 | + <li class="divider"></li> | ||
| 244 | + <li> | ||
| 245 | + <a class="text-center" href="#"> | ||
| 246 | + <strong>See All Alerts</strong> | ||
| 247 | + <i class="fa fa-angle-right"></i> | ||
| 248 | + </a> | ||
| 249 | + </li> | ||
| 250 | + </ul> | ||
| 251 | + <!-- /.dropdown-alerts --> | ||
| 252 | + </li> | ||
| 253 | + <!-- /.dropdown --> | ||
| 254 | + <li class="dropdown"> | ||
| 255 | + <a class="dropdown-toggle" data-toggle="dropdown" href="#"> | ||
| 256 | + <i class="fa fa-user fa-fw"></i> <i class="fa fa-caret-down"></i> | ||
| 257 | + </a> | ||
| 258 | + <ul class="dropdown-menu dropdown-user"> | ||
| 259 | + <li><a href="#"><i class="fa fa-user fa-fw"></i> User Profile</a> | ||
| 260 | + </li> | ||
| 261 | + <li><a href="#"><i class="fa fa-gear fa-fw"></i> Settings</a> | ||
| 262 | + </li> | ||
| 263 | + <li class="divider"></li> | ||
| 264 | + <li><a href="login.html"><i class="fa fa-sign-out fa-fw"></i> Logout</a> | ||
| 265 | + </li> | ||
| 266 | + </ul> | ||
| 267 | + <!-- /.dropdown-user --> | ||
| 268 | + </li> | ||
| 269 | + <!-- /.dropdown --> | ||
| 270 | + </ul> | ||
| 271 | + <!-- /.navbar-top-links --> | ||
| 272 | + | ||
| 273 | + <div class="navbar-default sidebar" role="navigation"> | ||
| 274 | + <div class="sidebar-nav navbar-collapse"> | ||
| 275 | + <ul class="nav" id="side-menu"> | ||
| 276 | + <li class="sidebar-search"> | ||
| 277 | + <div class="input-group custom-search-form"> | ||
| 278 | + <input type="text" class="form-control" placeholder="Search..."> | ||
| 279 | + <span class="input-group-btn"> | ||
| 280 | + <button class="btn btn-default" type="button"> | ||
| 281 | + <i class="fa fa-search"></i> | ||
| 282 | + </button> | ||
| 283 | + </span> | ||
| 284 | + </div> | ||
| 285 | + <!-- /input-group --> | ||
| 286 | + </li> | ||
| 287 | + <li> | ||
| 288 | + <a href="index.html"><i class="fa fa-dashboard fa-fw"></i> Dashboard</a> | ||
| 289 | + </li> | ||
| 290 | + <li> | ||
| 291 | + <a href="#"><i class="fa fa-bar-chart-o fa-fw"></i> Charts<span class="fa arrow"></span></a> | ||
| 292 | + <ul class="nav nav-second-level"> | ||
| 293 | + <li> | ||
| 294 | + <a href="flot.html">Flot Charts</a> | ||
| 295 | + </li> | ||
| 296 | + <li> | ||
| 297 | + <a href="morris.html">Morris.js Charts</a> | ||
| 298 | + </li> | ||
| 299 | + </ul> | ||
| 300 | + <!-- /.nav-second-level --> | ||
| 301 | + </li> | ||
| 302 | + <li> | ||
| 303 | + <a href="tables.html"><i class="fa fa-table fa-fw"></i> Tables</a> | ||
| 304 | + </li> | ||
| 305 | + <li> | ||
| 306 | + <a href="forms.html"><i class="fa fa-edit fa-fw"></i> Forms</a> | ||
| 307 | + </li> | ||
| 308 | + <li> | ||
| 309 | + <a href="#"><i class="fa fa-wrench fa-fw"></i> UI Elements<span class="fa arrow"></span></a> | ||
| 310 | + <ul class="nav nav-second-level"> | ||
| 311 | + <li> | ||
| 312 | + <a href="panels-wells.html">Panels and Wells</a> | ||
| 313 | + </li> | ||
| 314 | + <li> | ||
| 315 | + <a href="buttons.html">Buttons</a> | ||
| 316 | + </li> | ||
| 317 | + <li> | ||
| 318 | + <a href="notifications.html">Notifications</a> | ||
| 319 | + </li> | ||
| 320 | + <li> | ||
| 321 | + <a href="typography.html">Typography</a> | ||
| 322 | + </li> | ||
| 323 | + <li> | ||
| 324 | + <a href="icons.html"> Icons</a> | ||
| 325 | + </li> | ||
| 326 | + <li> | ||
| 327 | + <a href="grid.html">Grid</a> | ||
| 328 | + </li> | ||
| 329 | + </ul> | ||
| 330 | + <!-- /.nav-second-level --> | ||
| 331 | + </li> | ||
| 332 | + <li> | ||
| 333 | + <a href="#"><i class="fa fa-sitemap fa-fw"></i> Multi-Level Dropdown<span class="fa arrow"></span></a> | ||
| 334 | + <ul class="nav nav-second-level"> | ||
| 335 | + <li> | ||
| 336 | + <a href="#">Second Level Item</a> | ||
| 337 | + </li> | ||
| 338 | + <li> | ||
| 339 | + <a href="#">Second Level Item</a> | ||
| 340 | + </li> | ||
| 341 | + <li> | ||
| 342 | + <a href="#">Third Level <span class="fa arrow"></span></a> | ||
| 343 | + <ul class="nav nav-third-level"> | ||
| 344 | + <li> | ||
| 345 | + <a href="#">Third Level Item</a> | ||
| 346 | + </li> | ||
| 347 | + <li> | ||
| 348 | + <a href="#">Third Level Item</a> | ||
| 349 | + </li> | ||
| 350 | + <li> | ||
| 351 | + <a href="#">Third Level Item</a> | ||
| 352 | + </li> | ||
| 353 | + <li> | ||
| 354 | + <a href="#">Third Level Item</a> | ||
| 355 | + </li> | ||
| 356 | + </ul> | ||
| 357 | + <!-- /.nav-third-level --> | ||
| 358 | + </li> | ||
| 359 | + </ul> | ||
| 360 | + <!-- /.nav-second-level --> | ||
| 361 | + </li> | ||
| 362 | + <li> | ||
| 363 | + <a href="#"><i class="fa fa-files-o fa-fw"></i> Sample Pages<span class="fa arrow"></span></a> | ||
| 364 | + <ul class="nav nav-second-level"> | ||
| 365 | + <li> | ||
| 366 | + <a href="blank.html">Blank Page</a> | ||
| 367 | + </li> | ||
| 368 | + <li> | ||
| 369 | + <a href="login.html">Login Page</a> | ||
| 370 | + </li> | ||
| 371 | + </ul> | ||
| 372 | + <!-- /.nav-second-level --> | ||
| 373 | + </li> | ||
| 374 | + </ul> | ||
| 375 | + </div> | ||
| 376 | + <!-- /.sidebar-collapse --> | ||
| 377 | + </div> | ||
| 378 | + <!-- /.navbar-static-side --> | ||
| 379 | + </nav> | ||
| 380 | + | ||
| 381 | + <div id="page-wrapper"> | ||
| 382 | + <div class="row"> | ||
| 383 | + <div class="col-lg-12"> | ||
| 384 | + <h1 class="page-header">Dashboard</h1> | ||
| 385 | + </div> | ||
| 386 | + <!-- /.col-lg-12 --> | ||
| 387 | + </div> | ||
| 388 | + <!-- /.row --> | ||
| 389 | + <div class="row"> | ||
| 390 | + <div class="col-lg-3 col-md-6"> | ||
| 391 | + <div class="panel panel-primary"> | ||
| 392 | + <div class="panel-heading"> | ||
| 393 | + <div class="row"> | ||
| 394 | + <div class="col-xs-3"> | ||
| 395 | + <i class="fa fa-comments fa-5x"></i> | ||
| 396 | + </div> | ||
| 397 | + <div class="col-xs-9 text-right"> | ||
| 398 | + <div class="huge">26</div> | ||
| 399 | + <div>New Comments!</div> | ||
| 400 | + </div> | ||
| 401 | + </div> | ||
| 402 | + </div> | ||
| 403 | + <a href="#"> | ||
| 404 | + <div class="panel-footer"> | ||
| 405 | + <span class="pull-left">View Details</span> | ||
| 406 | + <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span> | ||
| 407 | + <div class="clearfix"></div> | ||
| 408 | + </div> | ||
| 409 | + </a> | ||
| 410 | + </div> | ||
| 411 | + </div> | ||
| 412 | + <div class="col-lg-3 col-md-6"> | ||
| 413 | + <div class="panel panel-green"> | ||
| 414 | + <div class="panel-heading"> | ||
| 415 | + <div class="row"> | ||
| 416 | + <div class="col-xs-3"> | ||
| 417 | + <i class="fa fa-tasks fa-5x"></i> | ||
| 418 | + </div> | ||
| 419 | + <div class="col-xs-9 text-right"> | ||
| 420 | + <div class="huge">12</div> | ||
| 421 | + <div>New Tasks!</div> | ||
| 422 | + </div> | ||
| 423 | + </div> | ||
| 424 | + </div> | ||
| 425 | + <a href="#"> | ||
| 426 | + <div class="panel-footer"> | ||
| 427 | + <span class="pull-left">View Details</span> | ||
| 428 | + <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span> | ||
| 429 | + <div class="clearfix"></div> | ||
| 430 | + </div> | ||
| 431 | + </a> | ||
| 432 | + </div> | ||
| 433 | + </div> | ||
| 434 | + <div class="col-lg-3 col-md-6"> | ||
| 435 | + <div class="panel panel-yellow"> | ||
| 436 | + <div class="panel-heading"> | ||
| 437 | + <div class="row"> | ||
| 438 | + <div class="col-xs-3"> | ||
| 439 | + <i class="fa fa-shopping-cart fa-5x"></i> | ||
| 440 | + </div> | ||
| 441 | + <div class="col-xs-9 text-right"> | ||
| 442 | + <div class="huge">124</div> | ||
| 443 | + <div>New Orders!</div> | ||
| 444 | + </div> | ||
| 445 | + </div> | ||
| 446 | + </div> | ||
| 447 | + <a href="#"> | ||
| 448 | + <div class="panel-footer"> | ||
| 449 | + <span class="pull-left">View Details</span> | ||
| 450 | + <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span> | ||
| 451 | + <div class="clearfix"></div> | ||
| 452 | + </div> | ||
| 453 | + </a> | ||
| 454 | + </div> | ||
| 455 | + </div> | ||
| 456 | + <div class="col-lg-3 col-md-6"> | ||
| 457 | + <div class="panel panel-red"> | ||
| 458 | + <div class="panel-heading"> | ||
| 459 | + <div class="row"> | ||
| 460 | + <div class="col-xs-3"> | ||
| 461 | + <i class="fa fa-support fa-5x"></i> | ||
| 462 | + </div> | ||
| 463 | + <div class="col-xs-9 text-right"> | ||
| 464 | + <div class="huge">13</div> | ||
| 465 | + <div>Support Tickets!</div> | ||
| 466 | + </div> | ||
| 467 | + </div> | ||
| 468 | + </div> | ||
| 469 | + <a href="#"> | ||
| 470 | + <div class="panel-footer"> | ||
| 471 | + <span class="pull-left">View Details</span> | ||
| 472 | + <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span> | ||
| 473 | + <div class="clearfix"></div> | ||
| 474 | + </div> | ||
| 475 | + </a> | ||
| 476 | + </div> | ||
| 477 | + </div> | ||
| 478 | + </div> | ||
| 479 | + <!-- /.row --> | ||
| 480 | + <div class="row"> | ||
| 481 | + <div class="col-lg-8"> | ||
| 482 | + <div class="panel panel-default"> | ||
| 483 | + <div class="panel-heading"> | ||
| 484 | + <i class="fa fa-bar-chart-o fa-fw"></i> Area Chart Example | ||
| 485 | + <div class="pull-right"> | ||
| 486 | + <div class="btn-group"> | ||
| 487 | + <button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"> | ||
| 488 | + Actions | ||
| 489 | + <span class="caret"></span> | ||
| 490 | + </button> | ||
| 491 | + <ul class="dropdown-menu pull-right" role="menu"> | ||
| 492 | + <li><a href="#">Action</a> | ||
| 493 | + </li> | ||
| 494 | + <li><a href="#">Another action</a> | ||
| 495 | + </li> | ||
| 496 | + <li><a href="#">Something else here</a> | ||
| 497 | + </li> | ||
| 498 | + <li class="divider"></li> | ||
| 499 | + <li><a href="#">Separated link</a> | ||
| 500 | + </li> | ||
| 501 | + </ul> | ||
| 502 | + </div> | ||
| 503 | + </div> | ||
| 504 | + </div> | ||
| 505 | + <!-- /.panel-heading --> | ||
| 506 | + <div class="panel-body"> | ||
| 507 | + <div id="morris-area-chart"></div> | ||
| 508 | + </div> | ||
| 509 | + <!-- /.panel-body --> | ||
| 510 | + </div> | ||
| 511 | + <!-- /.panel --> | ||
| 512 | + <div class="panel panel-default"> | ||
| 513 | + <div class="panel-heading"> | ||
| 514 | + <i class="fa fa-bar-chart-o fa-fw"></i> Bar Chart Example | ||
| 515 | + <div class="pull-right"> | ||
| 516 | + <div class="btn-group"> | ||
| 517 | + <button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"> | ||
| 518 | + Actions | ||
| 519 | + <span class="caret"></span> | ||
| 520 | + </button> | ||
| 521 | + <ul class="dropdown-menu pull-right" role="menu"> | ||
| 522 | + <li><a href="#">Action</a> | ||
| 523 | + </li> | ||
| 524 | + <li><a href="#">Another action</a> | ||
| 525 | + </li> | ||
| 526 | + <li><a href="#">Something else here</a> | ||
| 527 | + </li> | ||
| 528 | + <li class="divider"></li> | ||
| 529 | + <li><a href="#">Separated link</a> | ||
| 530 | + </li> | ||
| 531 | + </ul> | ||
| 532 | + </div> | ||
| 533 | + </div> | ||
| 534 | + </div> | ||
| 535 | + <!-- /.panel-heading --> | ||
| 536 | + <div class="panel-body"> | ||
| 537 | + <div class="row"> | ||
| 538 | + <div class="col-lg-4"> | ||
| 539 | + <div class="table-responsive"> | ||
| 540 | + <table class="table table-bordered table-hover table-striped"> | ||
| 541 | + <thead> | ||
| 542 | + <tr> | ||
| 543 | + <th>#</th> | ||
| 544 | + <th>Date</th> | ||
| 545 | + <th>Time</th> | ||
| 546 | + <th>Amount</th> | ||
| 547 | + </tr> | ||
| 548 | + </thead> | ||
| 549 | + <tbody> | ||
| 550 | + <tr> | ||
| 551 | + <td>3326</td> | ||
| 552 | + <td>10/21/2013</td> | ||
| 553 | + <td>3:29 PM</td> | ||
| 554 | + <td>$321.33</td> | ||
| 555 | + </tr> | ||
| 556 | + <tr> | ||
| 557 | + <td>3325</td> | ||
| 558 | + <td>10/21/2013</td> | ||
| 559 | + <td>3:20 PM</td> | ||
| 560 | + <td>$234.34</td> | ||
| 561 | + </tr> | ||
| 562 | + <tr> | ||
| 563 | + <td>3324</td> | ||
| 564 | + <td>10/21/2013</td> | ||
| 565 | + <td>3:03 PM</td> | ||
| 566 | + <td>$724.17</td> | ||
| 567 | + </tr> | ||
| 568 | + <tr> | ||
| 569 | + <td>3323</td> | ||
| 570 | + <td>10/21/2013</td> | ||
| 571 | + <td>3:00 PM</td> | ||
| 572 | + <td>$23.71</td> | ||
| 573 | + </tr> | ||
| 574 | + <tr> | ||
| 575 | + <td>3322</td> | ||
| 576 | + <td>10/21/2013</td> | ||
| 577 | + <td>2:49 PM</td> | ||
| 578 | + <td>$8345.23</td> | ||
| 579 | + </tr> | ||
| 580 | + <tr> | ||
| 581 | + <td>3321</td> | ||
| 582 | + <td>10/21/2013</td> | ||
| 583 | + <td>2:23 PM</td> | ||
| 584 | + <td>$245.12</td> | ||
| 585 | + </tr> | ||
| 586 | + <tr> | ||
| 587 | + <td>3320</td> | ||
| 588 | + <td>10/21/2013</td> | ||
| 589 | + <td>2:15 PM</td> | ||
| 590 | + <td>$5663.54</td> | ||
| 591 | + </tr> | ||
| 592 | + <tr> | ||
| 593 | + <td>3319</td> | ||
| 594 | + <td>10/21/2013</td> | ||
| 595 | + <td>2:13 PM</td> | ||
| 596 | + <td>$943.45</td> | ||
| 597 | + </tr> | ||
| 598 | + </tbody> | ||
| 599 | + </table> | ||
| 600 | + </div> | ||
| 601 | + <!-- /.table-responsive --> | ||
| 602 | + </div> | ||
| 603 | + <!-- /.col-lg-4 (nested) --> | ||
| 604 | + <div class="col-lg-8"> | ||
| 605 | + <div id="morris-bar-chart"></div> | ||
| 606 | + </div> | ||
| 607 | + <!-- /.col-lg-8 (nested) --> | ||
| 608 | + </div> | ||
| 609 | + <!-- /.row --> | ||
| 610 | + </div> | ||
| 611 | + <!-- /.panel-body --> | ||
| 612 | + </div> | ||
| 613 | + <!-- /.panel --> | ||
| 614 | + <div class="panel panel-default"> | ||
| 615 | + <div class="panel-heading"> | ||
| 616 | + <i class="fa fa-clock-o fa-fw"></i> Responsive Timeline | ||
| 617 | + </div> | ||
| 618 | + <!-- /.panel-heading --> | ||
| 619 | + <div class="panel-body"> | ||
| 620 | + <ul class="timeline"> | ||
| 621 | + <li> | ||
| 622 | + <div class="timeline-badge"><i class="fa fa-check"></i> | ||
| 623 | + </div> | ||
| 624 | + <div class="timeline-panel"> | ||
| 625 | + <div class="timeline-heading"> | ||
| 626 | + <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 627 | + <p><small class="text-muted"><i class="fa fa-clock-o"></i> 11 hours ago via Twitter</small> | ||
| 628 | + </p> | ||
| 629 | + </div> | ||
| 630 | + <div class="timeline-body"> | ||
| 631 | + <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Libero laboriosam dolor perspiciatis omnis exercitationem. Beatae, officia pariatur? Est cum veniam excepturi. Maiores praesentium, porro voluptas suscipit facere rem dicta, | ||
| 632 | + debitis.</p> | ||
| 633 | + </div> | ||
| 634 | + </div> | ||
| 635 | + </li> | ||
| 636 | + <li class="timeline-inverted"> | ||
| 637 | + <div class="timeline-badge warning"><i class="fa fa-credit-card"></i> | ||
| 638 | + </div> | ||
| 639 | + <div class="timeline-panel"> | ||
| 640 | + <div class="timeline-heading"> | ||
| 641 | + <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 642 | + </div> | ||
| 643 | + <div class="timeline-body"> | ||
| 644 | + <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Autem dolorem quibusdam, tenetur commodi provident cumque magni voluptatem libero, quis rerum. Fugiat esse debitis optio, tempore. Animi officiis alias, officia repellendus.</p> | ||
| 645 | + <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium maiores odit qui est tempora eos, nostrum provident explicabo dignissimos debitis vel! Adipisci eius voluptates, ad aut recusandae minus eaque facere.</p> | ||
| 646 | + </div> | ||
| 647 | + </div> | ||
| 648 | + </li> | ||
| 649 | + <li> | ||
| 650 | + <div class="timeline-badge danger"><i class="fa fa-bomb"></i> | ||
| 651 | + </div> | ||
| 652 | + <div class="timeline-panel"> | ||
| 653 | + <div class="timeline-heading"> | ||
| 654 | + <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 655 | + </div> | ||
| 656 | + <div class="timeline-body"> | ||
| 657 | + <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus numquam facilis enim eaque, tenetur nam id qui vel velit similique nihil iure molestias aliquam, voluptatem totam quaerat, magni commodi quisquam.</p> | ||
| 658 | + </div> | ||
| 659 | + </div> | ||
| 660 | + </li> | ||
| 661 | + <li class="timeline-inverted"> | ||
| 662 | + <div class="timeline-panel"> | ||
| 663 | + <div class="timeline-heading"> | ||
| 664 | + <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 665 | + </div> | ||
| 666 | + <div class="timeline-body"> | ||
| 667 | + <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptates est quaerat asperiores sapiente, eligendi, nihil. Itaque quos, alias sapiente rerum quas odit! Aperiam officiis quidem delectus libero, omnis ut debitis!</p> | ||
| 668 | + </div> | ||
| 669 | + </div> | ||
| 670 | + </li> | ||
| 671 | + <li> | ||
| 672 | + <div class="timeline-badge info"><i class="fa fa-save"></i> | ||
| 673 | + </div> | ||
| 674 | + <div class="timeline-panel"> | ||
| 675 | + <div class="timeline-heading"> | ||
| 676 | + <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 677 | + </div> | ||
| 678 | + <div class="timeline-body"> | ||
| 679 | + <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis minus modi quam ipsum alias at est molestiae excepturi delectus nesciunt, quibusdam debitis amet, beatae consequuntur impedit nulla qui! Laborum, atque.</p> | ||
| 680 | + <hr> | ||
| 681 | + <div class="btn-group"> | ||
| 682 | + <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown"> | ||
| 683 | + <i class="fa fa-gear"></i> <span class="caret"></span> | ||
| 684 | + </button> | ||
| 685 | + <ul class="dropdown-menu" role="menu"> | ||
| 686 | + <li><a href="#">Action</a> | ||
| 687 | + </li> | ||
| 688 | + <li><a href="#">Another action</a> | ||
| 689 | + </li> | ||
| 690 | + <li><a href="#">Something else here</a> | ||
| 691 | + </li> | ||
| 692 | + <li class="divider"></li> | ||
| 693 | + <li><a href="#">Separated link</a> | ||
| 694 | + </li> | ||
| 695 | + </ul> | ||
| 696 | + </div> | ||
| 697 | + </div> | ||
| 698 | + </div> | ||
| 699 | + </li> | ||
| 700 | + <li> | ||
| 701 | + <div class="timeline-panel"> | ||
| 702 | + <div class="timeline-heading"> | ||
| 703 | + <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 704 | + </div> | ||
| 705 | + <div class="timeline-body"> | ||
| 706 | + <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sequi fuga odio quibusdam. Iure expedita, incidunt unde quis nam! Quod, quisquam. Officia quam qui adipisci quas consequuntur nostrum sequi. Consequuntur, commodi.</p> | ||
| 707 | + </div> | ||
| 708 | + </div> | ||
| 709 | + </li> | ||
| 710 | + <li class="timeline-inverted"> | ||
| 711 | + <div class="timeline-badge success"><i class="fa fa-graduation-cap"></i> | ||
| 712 | + </div> | ||
| 713 | + <div class="timeline-panel"> | ||
| 714 | + <div class="timeline-heading"> | ||
| 715 | + <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 716 | + </div> | ||
| 717 | + <div class="timeline-body"> | ||
| 718 | + <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt obcaecati, quaerat tempore officia voluptas debitis consectetur culpa amet, accusamus dolorum fugiat, animi dicta aperiam, enim incidunt quisquam maxime neque eaque.</p> | ||
| 719 | + </div> | ||
| 720 | + </div> | ||
| 721 | + </li> | ||
| 722 | + </ul> | ||
| 723 | + </div> | ||
| 724 | + <!-- /.panel-body --> | ||
| 725 | + </div> | ||
| 726 | + <!-- /.panel --> | ||
| 727 | + </div> | ||
| 728 | + <!-- /.col-lg-8 --> | ||
| 729 | + <div class="col-lg-4"> | ||
| 730 | + <div class="panel panel-default"> | ||
| 731 | + <div class="panel-heading"> | ||
| 732 | + <i class="fa fa-bell fa-fw"></i> Notifications Panel | ||
| 733 | + </div> | ||
| 734 | + <!-- /.panel-heading --> | ||
| 735 | + <div class="panel-body"> | ||
| 736 | + <div class="list-group"> | ||
| 737 | + <a href="#" class="list-group-item"> | ||
| 738 | + <i class="fa fa-comment fa-fw"></i> New Comment | ||
| 739 | + <span class="pull-right text-muted small"><em>4 minutes ago</em> | ||
| 740 | + </span> | ||
| 741 | + </a> | ||
| 742 | + <a href="#" class="list-group-item"> | ||
| 743 | + <i class="fa fa-twitter fa-fw"></i> 3 New Followers | ||
| 744 | + <span class="pull-right text-muted small"><em>12 minutes ago</em> | ||
| 745 | + </span> | ||
| 746 | + </a> | ||
| 747 | + <a href="#" class="list-group-item"> | ||
| 748 | + <i class="fa fa-envelope fa-fw"></i> Message Sent | ||
| 749 | + <span class="pull-right text-muted small"><em>27 minutes ago</em> | ||
| 750 | + </span> | ||
| 751 | + </a> | ||
| 752 | + <a href="#" class="list-group-item"> | ||
| 753 | + <i class="fa fa-tasks fa-fw"></i> New Task | ||
| 754 | + <span class="pull-right text-muted small"><em>43 minutes ago</em> | ||
| 755 | + </span> | ||
| 756 | + </a> | ||
| 757 | + <a href="#" class="list-group-item"> | ||
| 758 | + <i class="fa fa-upload fa-fw"></i> Server Rebooted | ||
| 759 | + <span class="pull-right text-muted small"><em>11:32 AM</em> | ||
| 760 | + </span> | ||
| 761 | + </a> | ||
| 762 | + <a href="#" class="list-group-item"> | ||
| 763 | + <i class="fa fa-bolt fa-fw"></i> Server Crashed! | ||
| 764 | + <span class="pull-right text-muted small"><em>11:13 AM</em> | ||
| 765 | + </span> | ||
| 766 | + </a> | ||
| 767 | + <a href="#" class="list-group-item"> | ||
| 768 | + <i class="fa fa-warning fa-fw"></i> Server Not Responding | ||
| 769 | + <span class="pull-right text-muted small"><em>10:57 AM</em> | ||
| 770 | + </span> | ||
| 771 | + </a> | ||
| 772 | + <a href="#" class="list-group-item"> | ||
| 773 | + <i class="fa fa-shopping-cart fa-fw"></i> New Order Placed | ||
| 774 | + <span class="pull-right text-muted small"><em>9:49 AM</em> | ||
| 775 | + </span> | ||
| 776 | + </a> | ||
| 777 | + <a href="#" class="list-group-item"> | ||
| 778 | + <i class="fa fa-money fa-fw"></i> Payment Received | ||
| 779 | + <span class="pull-right text-muted small"><em>Yesterday</em> | ||
| 780 | + </span> | ||
| 781 | + </a> | ||
| 782 | + </div> | ||
| 783 | + <!-- /.list-group --> | ||
| 784 | + <a href="#" class="btn btn-default btn-block">View All Alerts</a> | ||
| 785 | + </div> | ||
| 786 | + <!-- /.panel-body --> | ||
| 787 | + </div> | ||
| 788 | + <!-- /.panel --> | ||
| 789 | + <div class="panel panel-default"> | ||
| 790 | + <div class="panel-heading"> | ||
| 791 | + <i class="fa fa-bar-chart-o fa-fw"></i> Donut Chart Example | ||
| 792 | + </div> | ||
| 793 | + <div class="panel-body"> | ||
| 794 | + <div id="morris-donut-chart"></div> | ||
| 795 | + <a href="#" class="btn btn-default btn-block">View Details</a> | ||
| 796 | + </div> | ||
| 797 | + <!-- /.panel-body --> | ||
| 798 | + </div> | ||
| 799 | + <!-- /.panel --> | ||
| 800 | + <div class="chat-panel panel panel-default"> | ||
| 801 | + <div class="panel-heading"> | ||
| 802 | + <i class="fa fa-comments fa-fw"></i> Chat | ||
| 803 | + <div class="btn-group pull-right"> | ||
| 804 | + <button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"> | ||
| 805 | + <i class="fa fa-chevron-down"></i> | ||
| 806 | + </button> | ||
| 807 | + <ul class="dropdown-menu slidedown"> | ||
| 808 | + <li> | ||
| 809 | + <a href="#"> | ||
| 810 | + <i class="fa fa-refresh fa-fw"></i> Refresh | ||
| 811 | + </a> | ||
| 812 | + </li> | ||
| 813 | + <li> | ||
| 814 | + <a href="#"> | ||
| 815 | + <i class="fa fa-check-circle fa-fw"></i> Available | ||
| 816 | + </a> | ||
| 817 | + </li> | ||
| 818 | + <li> | ||
| 819 | + <a href="#"> | ||
| 820 | + <i class="fa fa-times fa-fw"></i> Busy | ||
| 821 | + </a> | ||
| 822 | + </li> | ||
| 823 | + <li> | ||
| 824 | + <a href="#"> | ||
| 825 | + <i class="fa fa-clock-o fa-fw"></i> Away | ||
| 826 | + </a> | ||
| 827 | + </li> | ||
| 828 | + <li class="divider"></li> | ||
| 829 | + <li> | ||
| 830 | + <a href="#"> | ||
| 831 | + <i class="fa fa-sign-out fa-fw"></i> Sign Out | ||
| 832 | + </a> | ||
| 833 | + </li> | ||
| 834 | + </ul> | ||
| 835 | + </div> | ||
| 836 | + </div> | ||
| 837 | + <!-- /.panel-heading --> | ||
| 838 | + <div class="panel-body"> | ||
| 839 | + <ul class="chat"> | ||
| 840 | + <li class="left clearfix"> | ||
| 841 | + <span class="chat-img pull-left"> | ||
| 842 | + <img src="http://placehold.it/50/55C1E7/fff" alt="User Avatar" class="img-circle" /> | ||
| 843 | + </span> | ||
| 844 | + <div class="chat-body clearfix"> | ||
| 845 | + <div class="header"> | ||
| 846 | + <strong class="primary-font">Jack Sparrow</strong> | ||
| 847 | + <small class="pull-right text-muted"> | ||
| 848 | + <i class="fa fa-clock-o fa-fw"></i> 12 mins ago | ||
| 849 | + </small> | ||
| 850 | + </div> | ||
| 851 | + <p> | ||
| 852 | + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. | ||
| 853 | + </p> | ||
| 854 | + </div> | ||
| 855 | + </li> | ||
| 856 | + <li class="right clearfix"> | ||
| 857 | + <span class="chat-img pull-right"> | ||
| 858 | + <img src="http://placehold.it/50/FA6F57/fff" alt="User Avatar" class="img-circle" /> | ||
| 859 | + </span> | ||
| 860 | + <div class="chat-body clearfix"> | ||
| 861 | + <div class="header"> | ||
| 862 | + <small class=" text-muted"> | ||
| 863 | + <i class="fa fa-clock-o fa-fw"></i> 13 mins ago</small> | ||
| 864 | + <strong class="pull-right primary-font">Bhaumik Patel</strong> | ||
| 865 | + </div> | ||
| 866 | + <p> | ||
| 867 | + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. | ||
| 868 | + </p> | ||
| 869 | + </div> | ||
| 870 | + </li> | ||
| 871 | + <li class="left clearfix"> | ||
| 872 | + <span class="chat-img pull-left"> | ||
| 873 | + <img src="http://placehold.it/50/55C1E7/fff" alt="User Avatar" class="img-circle" /> | ||
| 874 | + </span> | ||
| 875 | + <div class="chat-body clearfix"> | ||
| 876 | + <div class="header"> | ||
| 877 | + <strong class="primary-font">Jack Sparrow</strong> | ||
| 878 | + <small class="pull-right text-muted"> | ||
| 879 | + <i class="fa fa-clock-o fa-fw"></i> 14 mins ago</small> | ||
| 880 | + </div> | ||
| 881 | + <p> | ||
| 882 | + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. | ||
| 883 | + </p> | ||
| 884 | + </div> | ||
| 885 | + </li> | ||
| 886 | + <li class="right clearfix"> | ||
| 887 | + <span class="chat-img pull-right"> | ||
| 888 | + <img src="http://placehold.it/50/FA6F57/fff" alt="User Avatar" class="img-circle" /> | ||
| 889 | + </span> | ||
| 890 | + <div class="chat-body clearfix"> | ||
| 891 | + <div class="header"> | ||
| 892 | + <small class=" text-muted"> | ||
| 893 | + <i class="fa fa-clock-o fa-fw"></i> 15 mins ago</small> | ||
| 894 | + <strong class="pull-right primary-font">Bhaumik Patel</strong> | ||
| 895 | + </div> | ||
| 896 | + <p> | ||
| 897 | + Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. | ||
| 898 | + </p> | ||
| 899 | + </div> | ||
| 900 | + </li> | ||
| 901 | + </ul> | ||
| 902 | + </div> | ||
| 903 | + <!-- /.panel-body --> | ||
| 904 | + <div class="panel-footer"> | ||
| 905 | + <div class="input-group"> | ||
| 906 | + <input id="btn-input" type="text" class="form-control input-sm" placeholder="Type your message here..." /> | ||
| 907 | + <span class="input-group-btn"> | ||
| 908 | + <button class="btn btn-warning btn-sm" id="btn-chat"> | ||
| 909 | + Send | ||
| 910 | + </button> | ||
| 911 | + </span> | ||
| 912 | + </div> | ||
| 913 | + </div> | ||
| 914 | + <!-- /.panel-footer --> | ||
| 915 | + </div> | ||
| 916 | + <!-- /.panel .chat-panel --> | ||
| 917 | + </div> | ||
| 918 | + <!-- /.col-lg-4 --> | ||
| 919 | + </div> | ||
| 920 | + <!-- /.row --> | ||
| 921 | + </div> | ||
| 922 | + <!-- /#page-wrapper --> | ||
| 923 | + | ||
| 924 | + </div> | ||
| 925 | + <!-- /#wrapper --> | ||
| 926 | + | ||
| 927 | + <!-- jQuery --> | ||
| 928 | + <script src="../vendor/jquery/jquery.min.js"></script> | ||
| 929 | + | ||
| 930 | + <!-- Bootstrap Core JavaScript --> | ||
| 931 | + <script src="../vendor/bootstrap/js/bootstrap.min.js"></script> | ||
| 932 | + | ||
| 933 | + <!-- Metis Menu Plugin JavaScript --> | ||
| 934 | + <script src="../vendor/metisMenu/metisMenu.min.js"></script> | ||
| 935 | + | ||
| 936 | + <!-- Morris Charts JavaScript --> | ||
| 937 | + <script src="../vendor/raphael/raphael.min.js"></script> | ||
| 938 | + <script src="../vendor/morrisjs/morris.min.js"></script> | ||
| 939 | + <script src="../data/morris-data.js"></script> | ||
| 940 | + | ||
| 941 | + <!-- Custom Theme JavaScript --> | ||
| 942 | + <script src="../dist/js/sb-admin-2.js"></script> | ||
| 943 | + | ||
| 944 | +</body> | ||
| 945 | + | ||
| 946 | +</html> | ... | ... |
views/index2.ejs
deleted
100644 → 0
| 1 | - | ||
| 2 | -<!DOCTYPE html> | ||
| 3 | -<html lang="en"> | ||
| 4 | -<!-- 합쳐지고 최소화된 최신 CSS --> | ||
| 5 | -<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css"> | ||
| 6 | - | ||
| 7 | -<!-- 부가적인 테마 --> | ||
| 8 | -<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css"> | ||
| 9 | - | ||
| 10 | -<!-- 합쳐지고 최소화된 최신 자바스크립트 --> | ||
| 11 | -<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script> | ||
| 12 | -<head> | ||
| 13 | - | ||
| 14 | - <meta charset="utf-8"> | ||
| 15 | - <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
| 16 | - <meta name="viewport" content="width=device-width, initial-scale=1"> | ||
| 17 | - <meta name="description" content=""> | ||
| 18 | - <meta name="author" content=""> | ||
| 19 | - | ||
| 20 | - <title>SB Admin 2 - Bootstrap Admin Theme</title> | ||
| 21 | - | ||
| 22 | - <!-- Bootstrap Core CSS --> | ||
| 23 | - <link href="../vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
| 24 | - | ||
| 25 | - <!-- MetisMenu CSS --> | ||
| 26 | - <link href="../vendor/metisMenu/metisMenu.min.css" rel="stylesheet"> | ||
| 27 | - | ||
| 28 | - <!-- Custom CSS --> | ||
| 29 | - <link href="../dist/css/sb-admin-2.css" rel="stylesheet"> | ||
| 30 | - | ||
| 31 | - <!-- Morris Charts CSS --> | ||
| 32 | - <link href="../vendor/morrisjs/morris.css" rel="stylesheet"> | ||
| 33 | - | ||
| 34 | - <!-- Custom Fonts --> | ||
| 35 | - <link href="../vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css"> | ||
| 36 | - | ||
| 37 | - <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> | ||
| 38 | - <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | ||
| 39 | - <!--[if lt IE 9]> | ||
| 40 | - <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script> | ||
| 41 | - <script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script> | ||
| 42 | - <![endif]--> | ||
| 43 | - | ||
| 44 | -</head> | ||
| 45 | - | ||
| 46 | -<body> | ||
| 47 | - | ||
| 48 | - <div id="wrapper"> | ||
| 49 | - | ||
| 50 | - <!-- Navigation --> | ||
| 51 | - <nav class="navbar navbar-default navbar-static-top" role="navigation" style="margin-bottom: 0"> | ||
| 52 | - <div class="navbar-header"> | ||
| 53 | - <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> | ||
| 54 | - <span class="sr-only">Toggle navigation</span> | ||
| 55 | - <span class="icon-bar"></span> | ||
| 56 | - <span class="icon-bar"></span> | ||
| 57 | - <span class="icon-bar"></span> | ||
| 58 | - </button> | ||
| 59 | - <a class="navbar-brand" href="index.html">SB Admin v2.0</a> | ||
| 60 | - </div> | ||
| 61 | - <!-- /.navbar-header --> | ||
| 62 | - | ||
| 63 | - <ul class="nav navbar-top-links navbar-right"> | ||
| 64 | - <li class="dropdown"> | ||
| 65 | - <a class="dropdown-toggle" data-toggle="dropdown" href="#"> | ||
| 66 | - <i class="fa fa-envelope fa-fw"></i> <i class="fa fa-caret-down"></i> | ||
| 67 | - </a> | ||
| 68 | - <ul class="dropdown-menu dropdown-messages"> | ||
| 69 | - <li> | ||
| 70 | - <a href="#"> | ||
| 71 | - <div> | ||
| 72 | - <strong>John Smith</strong> | ||
| 73 | - <span class="pull-right text-muted"> | ||
| 74 | - <em>Yesterday</em> | ||
| 75 | - </span> | ||
| 76 | - </div> | ||
| 77 | - <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div> | ||
| 78 | - </a> | ||
| 79 | - </li> | ||
| 80 | - <li class="divider"></li> | ||
| 81 | - <li> | ||
| 82 | - <a href="#"> | ||
| 83 | - <div> | ||
| 84 | - <strong>John Smith</strong> | ||
| 85 | - <span class="pull-right text-muted"> | ||
| 86 | - <em>Yesterday</em> | ||
| 87 | - </span> | ||
| 88 | - </div> | ||
| 89 | - <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div> | ||
| 90 | - </a> | ||
| 91 | - </li> | ||
| 92 | - <li class="divider"></li> | ||
| 93 | - <li> | ||
| 94 | - <a href="#"> | ||
| 95 | - <div> | ||
| 96 | - <strong>John Smith</strong> | ||
| 97 | - <span class="pull-right text-muted"> | ||
| 98 | - <em>Yesterday</em> | ||
| 99 | - </span> | ||
| 100 | - </div> | ||
| 101 | - <div>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque eleifend...</div> | ||
| 102 | - </a> | ||
| 103 | - </li> | ||
| 104 | - <li class="divider"></li> | ||
| 105 | - <li> | ||
| 106 | - <a class="text-center" href="#"> | ||
| 107 | - <strong>Read All Messages</strong> | ||
| 108 | - <i class="fa fa-angle-right"></i> | ||
| 109 | - </a> | ||
| 110 | - </li> | ||
| 111 | - </ul> | ||
| 112 | - <!-- /.dropdown-messages --> | ||
| 113 | - </li> | ||
| 114 | - <!-- /.dropdown --> | ||
| 115 | - <li class="dropdown"> | ||
| 116 | - <a class="dropdown-toggle" data-toggle="dropdown" href="#"> | ||
| 117 | - <i class="fa fa-tasks fa-fw"></i> <i class="fa fa-caret-down"></i> | ||
| 118 | - </a> | ||
| 119 | - <ul class="dropdown-menu dropdown-tasks"> | ||
| 120 | - <li> | ||
| 121 | - <a href="#"> | ||
| 122 | - <div> | ||
| 123 | - <p> | ||
| 124 | - <strong>Task 1</strong> | ||
| 125 | - <span class="pull-right text-muted">40% Complete</span> | ||
| 126 | - </p> | ||
| 127 | - <div class="progress progress-striped active"> | ||
| 128 | - <div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"> | ||
| 129 | - <span class="sr-only">40% Complete (success)</span> | ||
| 130 | - </div> | ||
| 131 | - </div> | ||
| 132 | - </div> | ||
| 133 | - </a> | ||
| 134 | - </li> | ||
| 135 | - <li class="divider"></li> | ||
| 136 | - <li> | ||
| 137 | - <a href="#"> | ||
| 138 | - <div> | ||
| 139 | - <p> | ||
| 140 | - <strong>Task 2</strong> | ||
| 141 | - <span class="pull-right text-muted">20% Complete</span> | ||
| 142 | - </p> | ||
| 143 | - <div class="progress progress-striped active"> | ||
| 144 | - <div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"> | ||
| 145 | - <span class="sr-only">20% Complete</span> | ||
| 146 | - </div> | ||
| 147 | - </div> | ||
| 148 | - </div> | ||
| 149 | - </a> | ||
| 150 | - </li> | ||
| 151 | - <li class="divider"></li> | ||
| 152 | - <li> | ||
| 153 | - <a href="#"> | ||
| 154 | - <div> | ||
| 155 | - <p> | ||
| 156 | - <strong>Task 3</strong> | ||
| 157 | - <span class="pull-right text-muted">60% Complete</span> | ||
| 158 | - </p> | ||
| 159 | - <div class="progress progress-striped active"> | ||
| 160 | - <div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"> | ||
| 161 | - <span class="sr-only">60% Complete (warning)</span> | ||
| 162 | - </div> | ||
| 163 | - </div> | ||
| 164 | - </div> | ||
| 165 | - </a> | ||
| 166 | - </li> | ||
| 167 | - <li class="divider"></li> | ||
| 168 | - <li> | ||
| 169 | - <a href="#"> | ||
| 170 | - <div> | ||
| 171 | - <p> | ||
| 172 | - <strong>Task 4</strong> | ||
| 173 | - <span class="pull-right text-muted">80% Complete</span> | ||
| 174 | - </p> | ||
| 175 | - <div class="progress progress-striped active"> | ||
| 176 | - <div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%"> | ||
| 177 | - <span class="sr-only">80% Complete (danger)</span> | ||
| 178 | - </div> | ||
| 179 | - </div> | ||
| 180 | - </div> | ||
| 181 | - </a> | ||
| 182 | - </li> | ||
| 183 | - <li class="divider"></li> | ||
| 184 | - <li> | ||
| 185 | - <a class="text-center" href="#"> | ||
| 186 | - <strong>See All Tasks</strong> | ||
| 187 | - <i class="fa fa-angle-right"></i> | ||
| 188 | - </a> | ||
| 189 | - </li> | ||
| 190 | - </ul> | ||
| 191 | - <!-- /.dropdown-tasks --> | ||
| 192 | - </li> | ||
| 193 | - <!-- /.dropdown --> | ||
| 194 | - <li class="dropdown"> | ||
| 195 | - <a class="dropdown-toggle" data-toggle="dropdown" href="#"> | ||
| 196 | - <i class="fa fa-bell fa-fw"></i> <i class="fa fa-caret-down"></i> | ||
| 197 | - </a> | ||
| 198 | - <ul class="dropdown-menu dropdown-alerts"> | ||
| 199 | - <li> | ||
| 200 | - <a href="#"> | ||
| 201 | - <div> | ||
| 202 | - <i class="fa fa-comment fa-fw"></i> New Comment | ||
| 203 | - <span class="pull-right text-muted small">4 minutes ago</span> | ||
| 204 | - </div> | ||
| 205 | - </a> | ||
| 206 | - </li> | ||
| 207 | - <li class="divider"></li> | ||
| 208 | - <li> | ||
| 209 | - <a href="#"> | ||
| 210 | - <div> | ||
| 211 | - <i class="fa fa-twitter fa-fw"></i> 3 New Followers | ||
| 212 | - <span class="pull-right text-muted small">12 minutes ago</span> | ||
| 213 | - </div> | ||
| 214 | - </a> | ||
| 215 | - </li> | ||
| 216 | - <li class="divider"></li> | ||
| 217 | - <li> | ||
| 218 | - <a href="#"> | ||
| 219 | - <div> | ||
| 220 | - <i class="fa fa-envelope fa-fw"></i> Message Sent | ||
| 221 | - <span class="pull-right text-muted small">4 minutes ago</span> | ||
| 222 | - </div> | ||
| 223 | - </a> | ||
| 224 | - </li> | ||
| 225 | - <li class="divider"></li> | ||
| 226 | - <li> | ||
| 227 | - <a href="#"> | ||
| 228 | - <div> | ||
| 229 | - <i class="fa fa-tasks fa-fw"></i> New Task | ||
| 230 | - <span class="pull-right text-muted small">4 minutes ago</span> | ||
| 231 | - </div> | ||
| 232 | - </a> | ||
| 233 | - </li> | ||
| 234 | - <li class="divider"></li> | ||
| 235 | - <li> | ||
| 236 | - <a href="#"> | ||
| 237 | - <div> | ||
| 238 | - <i class="fa fa-upload fa-fw"></i> Server Rebooted | ||
| 239 | - <span class="pull-right text-muted small">4 minutes ago</span> | ||
| 240 | - </div> | ||
| 241 | - </a> | ||
| 242 | - </li> | ||
| 243 | - <li class="divider"></li> | ||
| 244 | - <li> | ||
| 245 | - <a class="text-center" href="#"> | ||
| 246 | - <strong>See All Alerts</strong> | ||
| 247 | - <i class="fa fa-angle-right"></i> | ||
| 248 | - </a> | ||
| 249 | - </li> | ||
| 250 | - </ul> | ||
| 251 | - <!-- /.dropdown-alerts --> | ||
| 252 | - </li> | ||
| 253 | - <!-- /.dropdown --> | ||
| 254 | - <li class="dropdown"> | ||
| 255 | - <a class="dropdown-toggle" data-toggle="dropdown" href="#"> | ||
| 256 | - <i class="fa fa-user fa-fw"></i> <i class="fa fa-caret-down"></i> | ||
| 257 | - </a> | ||
| 258 | - <ul class="dropdown-menu dropdown-user"> | ||
| 259 | - <li><a href="#"><i class="fa fa-user fa-fw"></i> User Profile</a> | ||
| 260 | - </li> | ||
| 261 | - <li><a href="#"><i class="fa fa-gear fa-fw"></i> Settings</a> | ||
| 262 | - </li> | ||
| 263 | - <li class="divider"></li> | ||
| 264 | - <li><a href="login.html"><i class="fa fa-sign-out fa-fw"></i> Logout</a> | ||
| 265 | - </li> | ||
| 266 | - </ul> | ||
| 267 | - <!-- /.dropdown-user --> | ||
| 268 | - </li> | ||
| 269 | - <!-- /.dropdown --> | ||
| 270 | - </ul> | ||
| 271 | - <!-- /.navbar-top-links --> | ||
| 272 | - | ||
| 273 | - <div class="navbar-default sidebar" role="navigation"> | ||
| 274 | - <div class="sidebar-nav navbar-collapse"> | ||
| 275 | - <ul class="nav" id="side-menu"> | ||
| 276 | - <li class="sidebar-search"> | ||
| 277 | - <div class="input-group custom-search-form"> | ||
| 278 | - <input type="text" class="form-control" placeholder="Search..."> | ||
| 279 | - <span class="input-group-btn"> | ||
| 280 | - <button class="btn btn-default" type="button"> | ||
| 281 | - <i class="fa fa-search"></i> | ||
| 282 | - </button> | ||
| 283 | - </span> | ||
| 284 | - </div> | ||
| 285 | - <!-- /input-group --> | ||
| 286 | - </li> | ||
| 287 | - <li> | ||
| 288 | - <a href="index.html"><i class="fa fa-dashboard fa-fw"></i> Dashboard</a> | ||
| 289 | - </li> | ||
| 290 | - <li> | ||
| 291 | - <a href="#"><i class="fa fa-bar-chart-o fa-fw"></i> Charts<span class="fa arrow"></span></a> | ||
| 292 | - <ul class="nav nav-second-level"> | ||
| 293 | - <li> | ||
| 294 | - <a href="flot.html">Flot Charts</a> | ||
| 295 | - </li> | ||
| 296 | - <li> | ||
| 297 | - <a href="morris.html">Morris.js Charts</a> | ||
| 298 | - </li> | ||
| 299 | - </ul> | ||
| 300 | - <!-- /.nav-second-level --> | ||
| 301 | - </li> | ||
| 302 | - <li> | ||
| 303 | - <a href="tables.html"><i class="fa fa-table fa-fw"></i> Tables</a> | ||
| 304 | - </li> | ||
| 305 | - <li> | ||
| 306 | - <a href="forms.html"><i class="fa fa-edit fa-fw"></i> Forms</a> | ||
| 307 | - </li> | ||
| 308 | - <li> | ||
| 309 | - <a href="#"><i class="fa fa-wrench fa-fw"></i> UI Elements<span class="fa arrow"></span></a> | ||
| 310 | - <ul class="nav nav-second-level"> | ||
| 311 | - <li> | ||
| 312 | - <a href="panels-wells.html">Panels and Wells</a> | ||
| 313 | - </li> | ||
| 314 | - <li> | ||
| 315 | - <a href="buttons.html">Buttons</a> | ||
| 316 | - </li> | ||
| 317 | - <li> | ||
| 318 | - <a href="notifications.html">Notifications</a> | ||
| 319 | - </li> | ||
| 320 | - <li> | ||
| 321 | - <a href="typography.html">Typography</a> | ||
| 322 | - </li> | ||
| 323 | - <li> | ||
| 324 | - <a href="icons.html"> Icons</a> | ||
| 325 | - </li> | ||
| 326 | - <li> | ||
| 327 | - <a href="grid.html">Grid</a> | ||
| 328 | - </li> | ||
| 329 | - </ul> | ||
| 330 | - <!-- /.nav-second-level --> | ||
| 331 | - </li> | ||
| 332 | - <li> | ||
| 333 | - <a href="#"><i class="fa fa-sitemap fa-fw"></i> Multi-Level Dropdown<span class="fa arrow"></span></a> | ||
| 334 | - <ul class="nav nav-second-level"> | ||
| 335 | - <li> | ||
| 336 | - <a href="#">Second Level Item</a> | ||
| 337 | - </li> | ||
| 338 | - <li> | ||
| 339 | - <a href="#">Second Level Item</a> | ||
| 340 | - </li> | ||
| 341 | - <li> | ||
| 342 | - <a href="#">Third Level <span class="fa arrow"></span></a> | ||
| 343 | - <ul class="nav nav-third-level"> | ||
| 344 | - <li> | ||
| 345 | - <a href="#">Third Level Item</a> | ||
| 346 | - </li> | ||
| 347 | - <li> | ||
| 348 | - <a href="#">Third Level Item</a> | ||
| 349 | - </li> | ||
| 350 | - <li> | ||
| 351 | - <a href="#">Third Level Item</a> | ||
| 352 | - </li> | ||
| 353 | - <li> | ||
| 354 | - <a href="#">Third Level Item</a> | ||
| 355 | - </li> | ||
| 356 | - </ul> | ||
| 357 | - <!-- /.nav-third-level --> | ||
| 358 | - </li> | ||
| 359 | - </ul> | ||
| 360 | - <!-- /.nav-second-level --> | ||
| 361 | - </li> | ||
| 362 | - <li> | ||
| 363 | - <a href="#"><i class="fa fa-files-o fa-fw"></i> Sample Pages<span class="fa arrow"></span></a> | ||
| 364 | - <ul class="nav nav-second-level"> | ||
| 365 | - <li> | ||
| 366 | - <a href="blank.html">Blank Page</a> | ||
| 367 | - </li> | ||
| 368 | - <li> | ||
| 369 | - <a href="login.html">Login Page</a> | ||
| 370 | - </li> | ||
| 371 | - </ul> | ||
| 372 | - <!-- /.nav-second-level --> | ||
| 373 | - </li> | ||
| 374 | - </ul> | ||
| 375 | - </div> | ||
| 376 | - <!-- /.sidebar-collapse --> | ||
| 377 | - </div> | ||
| 378 | - <!-- /.navbar-static-side --> | ||
| 379 | - </nav> | ||
| 380 | - | ||
| 381 | - <div id="page-wrapper"> | ||
| 382 | - <div class="row"> | ||
| 383 | - <div class="col-lg-12"> | ||
| 384 | - <h1 class="page-header">Dashboard</h1> | ||
| 385 | - </div> | ||
| 386 | - <!-- /.col-lg-12 --> | ||
| 387 | - </div> | ||
| 388 | - <!-- /.row --> | ||
| 389 | - <div class="row"> | ||
| 390 | - <div class="col-lg-3 col-md-6"> | ||
| 391 | - <div class="panel panel-primary"> | ||
| 392 | - <div class="panel-heading"> | ||
| 393 | - <div class="row"> | ||
| 394 | - <div class="col-xs-3"> | ||
| 395 | - <i class="fa fa-comments fa-5x"></i> | ||
| 396 | - </div> | ||
| 397 | - <div class="col-xs-9 text-right"> | ||
| 398 | - <div class="huge">26</div> | ||
| 399 | - <div>New Comments!</div> | ||
| 400 | - </div> | ||
| 401 | - </div> | ||
| 402 | - </div> | ||
| 403 | - <a href="#"> | ||
| 404 | - <div class="panel-footer"> | ||
| 405 | - <span class="pull-left">View Details</span> | ||
| 406 | - <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span> | ||
| 407 | - <div class="clearfix"></div> | ||
| 408 | - </div> | ||
| 409 | - </a> | ||
| 410 | - </div> | ||
| 411 | - </div> | ||
| 412 | - <div class="col-lg-3 col-md-6"> | ||
| 413 | - <div class="panel panel-green"> | ||
| 414 | - <div class="panel-heading"> | ||
| 415 | - <div class="row"> | ||
| 416 | - <div class="col-xs-3"> | ||
| 417 | - <i class="fa fa-tasks fa-5x"></i> | ||
| 418 | - </div> | ||
| 419 | - <div class="col-xs-9 text-right"> | ||
| 420 | - <div class="huge">12</div> | ||
| 421 | - <div>New Tasks!</div> | ||
| 422 | - </div> | ||
| 423 | - </div> | ||
| 424 | - </div> | ||
| 425 | - <a href="#"> | ||
| 426 | - <div class="panel-footer"> | ||
| 427 | - <span class="pull-left">View Details</span> | ||
| 428 | - <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span> | ||
| 429 | - <div class="clearfix"></div> | ||
| 430 | - </div> | ||
| 431 | - </a> | ||
| 432 | - </div> | ||
| 433 | - </div> | ||
| 434 | - <div class="col-lg-3 col-md-6"> | ||
| 435 | - <div class="panel panel-yellow"> | ||
| 436 | - <div class="panel-heading"> | ||
| 437 | - <div class="row"> | ||
| 438 | - <div class="col-xs-3"> | ||
| 439 | - <i class="fa fa-shopping-cart fa-5x"></i> | ||
| 440 | - </div> | ||
| 441 | - <div class="col-xs-9 text-right"> | ||
| 442 | - <div class="huge">124</div> | ||
| 443 | - <div>New Orders!</div> | ||
| 444 | - </div> | ||
| 445 | - </div> | ||
| 446 | - </div> | ||
| 447 | - <a href="#"> | ||
| 448 | - <div class="panel-footer"> | ||
| 449 | - <span class="pull-left">View Details</span> | ||
| 450 | - <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span> | ||
| 451 | - <div class="clearfix"></div> | ||
| 452 | - </div> | ||
| 453 | - </a> | ||
| 454 | - </div> | ||
| 455 | - </div> | ||
| 456 | - <div class="col-lg-3 col-md-6"> | ||
| 457 | - <div class="panel panel-red"> | ||
| 458 | - <div class="panel-heading"> | ||
| 459 | - <div class="row"> | ||
| 460 | - <div class="col-xs-3"> | ||
| 461 | - <i class="fa fa-support fa-5x"></i> | ||
| 462 | - </div> | ||
| 463 | - <div class="col-xs-9 text-right"> | ||
| 464 | - <div class="huge">13</div> | ||
| 465 | - <div>Support Tickets!</div> | ||
| 466 | - </div> | ||
| 467 | - </div> | ||
| 468 | - </div> | ||
| 469 | - <a href="#"> | ||
| 470 | - <div class="panel-footer"> | ||
| 471 | - <span class="pull-left">View Details</span> | ||
| 472 | - <span class="pull-right"><i class="fa fa-arrow-circle-right"></i></span> | ||
| 473 | - <div class="clearfix"></div> | ||
| 474 | - </div> | ||
| 475 | - </a> | ||
| 476 | - </div> | ||
| 477 | - </div> | ||
| 478 | - </div> | ||
| 479 | - <!-- /.row --> | ||
| 480 | - <div class="row"> | ||
| 481 | - <div class="col-lg-8"> | ||
| 482 | - <div class="panel panel-default"> | ||
| 483 | - <div class="panel-heading"> | ||
| 484 | - <i class="fa fa-bar-chart-o fa-fw"></i> Area Chart Example | ||
| 485 | - <div class="pull-right"> | ||
| 486 | - <div class="btn-group"> | ||
| 487 | - <button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"> | ||
| 488 | - Actions | ||
| 489 | - <span class="caret"></span> | ||
| 490 | - </button> | ||
| 491 | - <ul class="dropdown-menu pull-right" role="menu"> | ||
| 492 | - <li><a href="#">Action</a> | ||
| 493 | - </li> | ||
| 494 | - <li><a href="#">Another action</a> | ||
| 495 | - </li> | ||
| 496 | - <li><a href="#">Something else here</a> | ||
| 497 | - </li> | ||
| 498 | - <li class="divider"></li> | ||
| 499 | - <li><a href="#">Separated link</a> | ||
| 500 | - </li> | ||
| 501 | - </ul> | ||
| 502 | - </div> | ||
| 503 | - </div> | ||
| 504 | - </div> | ||
| 505 | - <!-- /.panel-heading --> | ||
| 506 | - <div class="panel-body"> | ||
| 507 | - <div id="morris-area-chart"></div> | ||
| 508 | - </div> | ||
| 509 | - <!-- /.panel-body --> | ||
| 510 | - </div> | ||
| 511 | - <!-- /.panel --> | ||
| 512 | - <div class="panel panel-default"> | ||
| 513 | - <div class="panel-heading"> | ||
| 514 | - <i class="fa fa-bar-chart-o fa-fw"></i> Bar Chart Example | ||
| 515 | - <div class="pull-right"> | ||
| 516 | - <div class="btn-group"> | ||
| 517 | - <button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"> | ||
| 518 | - Actions | ||
| 519 | - <span class="caret"></span> | ||
| 520 | - </button> | ||
| 521 | - <ul class="dropdown-menu pull-right" role="menu"> | ||
| 522 | - <li><a href="#">Action</a> | ||
| 523 | - </li> | ||
| 524 | - <li><a href="#">Another action</a> | ||
| 525 | - </li> | ||
| 526 | - <li><a href="#">Something else here</a> | ||
| 527 | - </li> | ||
| 528 | - <li class="divider"></li> | ||
| 529 | - <li><a href="#">Separated link</a> | ||
| 530 | - </li> | ||
| 531 | - </ul> | ||
| 532 | - </div> | ||
| 533 | - </div> | ||
| 534 | - </div> | ||
| 535 | - <!-- /.panel-heading --> | ||
| 536 | - <div class="panel-body"> | ||
| 537 | - <div class="row"> | ||
| 538 | - <div class="col-lg-4"> | ||
| 539 | - <div class="table-responsive"> | ||
| 540 | - <table class="table table-bordered table-hover table-striped"> | ||
| 541 | - <thead> | ||
| 542 | - <tr> | ||
| 543 | - <th>#</th> | ||
| 544 | - <th>Date</th> | ||
| 545 | - <th>Time</th> | ||
| 546 | - <th>Amount</th> | ||
| 547 | - </tr> | ||
| 548 | - </thead> | ||
| 549 | - <tbody> | ||
| 550 | - <tr> | ||
| 551 | - <td>3326</td> | ||
| 552 | - <td>10/21/2013</td> | ||
| 553 | - <td>3:29 PM</td> | ||
| 554 | - <td>$321.33</td> | ||
| 555 | - </tr> | ||
| 556 | - <tr> | ||
| 557 | - <td>3325</td> | ||
| 558 | - <td>10/21/2013</td> | ||
| 559 | - <td>3:20 PM</td> | ||
| 560 | - <td>$234.34</td> | ||
| 561 | - </tr> | ||
| 562 | - <tr> | ||
| 563 | - <td>3324</td> | ||
| 564 | - <td>10/21/2013</td> | ||
| 565 | - <td>3:03 PM</td> | ||
| 566 | - <td>$724.17</td> | ||
| 567 | - </tr> | ||
| 568 | - <tr> | ||
| 569 | - <td>3323</td> | ||
| 570 | - <td>10/21/2013</td> | ||
| 571 | - <td>3:00 PM</td> | ||
| 572 | - <td>$23.71</td> | ||
| 573 | - </tr> | ||
| 574 | - <tr> | ||
| 575 | - <td>3322</td> | ||
| 576 | - <td>10/21/2013</td> | ||
| 577 | - <td>2:49 PM</td> | ||
| 578 | - <td>$8345.23</td> | ||
| 579 | - </tr> | ||
| 580 | - <tr> | ||
| 581 | - <td>3321</td> | ||
| 582 | - <td>10/21/2013</td> | ||
| 583 | - <td>2:23 PM</td> | ||
| 584 | - <td>$245.12</td> | ||
| 585 | - </tr> | ||
| 586 | - <tr> | ||
| 587 | - <td>3320</td> | ||
| 588 | - <td>10/21/2013</td> | ||
| 589 | - <td>2:15 PM</td> | ||
| 590 | - <td>$5663.54</td> | ||
| 591 | - </tr> | ||
| 592 | - <tr> | ||
| 593 | - <td>3319</td> | ||
| 594 | - <td>10/21/2013</td> | ||
| 595 | - <td>2:13 PM</td> | ||
| 596 | - <td>$943.45</td> | ||
| 597 | - </tr> | ||
| 598 | - </tbody> | ||
| 599 | - </table> | ||
| 600 | - </div> | ||
| 601 | - <!-- /.table-responsive --> | ||
| 602 | - </div> | ||
| 603 | - <!-- /.col-lg-4 (nested) --> | ||
| 604 | - <div class="col-lg-8"> | ||
| 605 | - <div id="morris-bar-chart"></div> | ||
| 606 | - </div> | ||
| 607 | - <!-- /.col-lg-8 (nested) --> | ||
| 608 | - </div> | ||
| 609 | - <!-- /.row --> | ||
| 610 | - </div> | ||
| 611 | - <!-- /.panel-body --> | ||
| 612 | - </div> | ||
| 613 | - <!-- /.panel --> | ||
| 614 | - <div class="panel panel-default"> | ||
| 615 | - <div class="panel-heading"> | ||
| 616 | - <i class="fa fa-clock-o fa-fw"></i> Responsive Timeline | ||
| 617 | - </div> | ||
| 618 | - <!-- /.panel-heading --> | ||
| 619 | - <div class="panel-body"> | ||
| 620 | - <ul class="timeline"> | ||
| 621 | - <li> | ||
| 622 | - <div class="timeline-badge"><i class="fa fa-check"></i> | ||
| 623 | - </div> | ||
| 624 | - <div class="timeline-panel"> | ||
| 625 | - <div class="timeline-heading"> | ||
| 626 | - <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 627 | - <p><small class="text-muted"><i class="fa fa-clock-o"></i> 11 hours ago via Twitter</small> | ||
| 628 | - </p> | ||
| 629 | - </div> | ||
| 630 | - <div class="timeline-body"> | ||
| 631 | - <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Libero laboriosam dolor perspiciatis omnis exercitationem. Beatae, officia pariatur? Est cum veniam excepturi. Maiores praesentium, porro voluptas suscipit facere rem dicta, debitis.</p> | ||
| 632 | - </div> | ||
| 633 | - </div> | ||
| 634 | - </li> | ||
| 635 | - <li class="timeline-inverted"> | ||
| 636 | - <div class="timeline-badge warning"><i class="fa fa-credit-card"></i> | ||
| 637 | - </div> | ||
| 638 | - <div class="timeline-panel"> | ||
| 639 | - <div class="timeline-heading"> | ||
| 640 | - <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 641 | - </div> | ||
| 642 | - <div class="timeline-body"> | ||
| 643 | - <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Autem dolorem quibusdam, tenetur commodi provident cumque magni voluptatem libero, quis rerum. Fugiat esse debitis optio, tempore. Animi officiis alias, officia repellendus.</p> | ||
| 644 | - <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Laudantium maiores odit qui est tempora eos, nostrum provident explicabo dignissimos debitis vel! Adipisci eius voluptates, ad aut recusandae minus eaque facere.</p> | ||
| 645 | - </div> | ||
| 646 | - </div> | ||
| 647 | - </li> | ||
| 648 | - <li> | ||
| 649 | - <div class="timeline-badge danger"><i class="fa fa-bomb"></i> | ||
| 650 | - </div> | ||
| 651 | - <div class="timeline-panel"> | ||
| 652 | - <div class="timeline-heading"> | ||
| 653 | - <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 654 | - </div> | ||
| 655 | - <div class="timeline-body"> | ||
| 656 | - <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Repellendus numquam facilis enim eaque, tenetur nam id qui vel velit similique nihil iure molestias aliquam, voluptatem totam quaerat, magni commodi quisquam.</p> | ||
| 657 | - </div> | ||
| 658 | - </div> | ||
| 659 | - </li> | ||
| 660 | - <li class="timeline-inverted"> | ||
| 661 | - <div class="timeline-panel"> | ||
| 662 | - <div class="timeline-heading"> | ||
| 663 | - <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 664 | - </div> | ||
| 665 | - <div class="timeline-body"> | ||
| 666 | - <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptates est quaerat asperiores sapiente, eligendi, nihil. Itaque quos, alias sapiente rerum quas odit! Aperiam officiis quidem delectus libero, omnis ut debitis!</p> | ||
| 667 | - </div> | ||
| 668 | - </div> | ||
| 669 | - </li> | ||
| 670 | - <li> | ||
| 671 | - <div class="timeline-badge info"><i class="fa fa-save"></i> | ||
| 672 | - </div> | ||
| 673 | - <div class="timeline-panel"> | ||
| 674 | - <div class="timeline-heading"> | ||
| 675 | - <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 676 | - </div> | ||
| 677 | - <div class="timeline-body"> | ||
| 678 | - <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nobis minus modi quam ipsum alias at est molestiae excepturi delectus nesciunt, quibusdam debitis amet, beatae consequuntur impedit nulla qui! Laborum, atque.</p> | ||
| 679 | - <hr> | ||
| 680 | - <div class="btn-group"> | ||
| 681 | - <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown"> | ||
| 682 | - <i class="fa fa-gear"></i> <span class="caret"></span> | ||
| 683 | - </button> | ||
| 684 | - <ul class="dropdown-menu" role="menu"> | ||
| 685 | - <li><a href="#">Action</a> | ||
| 686 | - </li> | ||
| 687 | - <li><a href="#">Another action</a> | ||
| 688 | - </li> | ||
| 689 | - <li><a href="#">Something else here</a> | ||
| 690 | - </li> | ||
| 691 | - <li class="divider"></li> | ||
| 692 | - <li><a href="#">Separated link</a> | ||
| 693 | - </li> | ||
| 694 | - </ul> | ||
| 695 | - </div> | ||
| 696 | - </div> | ||
| 697 | - </div> | ||
| 698 | - </li> | ||
| 699 | - <li> | ||
| 700 | - <div class="timeline-panel"> | ||
| 701 | - <div class="timeline-heading"> | ||
| 702 | - <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 703 | - </div> | ||
| 704 | - <div class="timeline-body"> | ||
| 705 | - <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sequi fuga odio quibusdam. Iure expedita, incidunt unde quis nam! Quod, quisquam. Officia quam qui adipisci quas consequuntur nostrum sequi. Consequuntur, commodi.</p> | ||
| 706 | - </div> | ||
| 707 | - </div> | ||
| 708 | - </li> | ||
| 709 | - <li class="timeline-inverted"> | ||
| 710 | - <div class="timeline-badge success"><i class="fa fa-graduation-cap"></i> | ||
| 711 | - </div> | ||
| 712 | - <div class="timeline-panel"> | ||
| 713 | - <div class="timeline-heading"> | ||
| 714 | - <h4 class="timeline-title">Lorem ipsum dolor</h4> | ||
| 715 | - </div> | ||
| 716 | - <div class="timeline-body"> | ||
| 717 | - <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt obcaecati, quaerat tempore officia voluptas debitis consectetur culpa amet, accusamus dolorum fugiat, animi dicta aperiam, enim incidunt quisquam maxime neque eaque.</p> | ||
| 718 | - </div> | ||
| 719 | - </div> | ||
| 720 | - </li> | ||
| 721 | - </ul> | ||
| 722 | - </div> | ||
| 723 | - <!-- /.panel-body --> | ||
| 724 | - </div> | ||
| 725 | - <!-- /.panel --> | ||
| 726 | - </div> | ||
| 727 | - <!-- /.col-lg-8 --> | ||
| 728 | - <div class="col-lg-4"> | ||
| 729 | - <div class="panel panel-default"> | ||
| 730 | - <div class="panel-heading"> | ||
| 731 | - <i class="fa fa-bell fa-fw"></i> Notifications Panel | ||
| 732 | - </div> | ||
| 733 | - <!-- /.panel-heading --> | ||
| 734 | - <div class="panel-body"> | ||
| 735 | - <div class="list-group"> | ||
| 736 | - <a href="#" class="list-group-item"> | ||
| 737 | - <i class="fa fa-comment fa-fw"></i> New Comment | ||
| 738 | - <span class="pull-right text-muted small"><em>4 minutes ago</em> | ||
| 739 | - </span> | ||
| 740 | - </a> | ||
| 741 | - <a href="#" class="list-group-item"> | ||
| 742 | - <i class="fa fa-twitter fa-fw"></i> 3 New Followers | ||
| 743 | - <span class="pull-right text-muted small"><em>12 minutes ago</em> | ||
| 744 | - </span> | ||
| 745 | - </a> | ||
| 746 | - <a href="#" class="list-group-item"> | ||
| 747 | - <i class="fa fa-envelope fa-fw"></i> Message Sent | ||
| 748 | - <span class="pull-right text-muted small"><em>27 minutes ago</em> | ||
| 749 | - </span> | ||
| 750 | - </a> | ||
| 751 | - <a href="#" class="list-group-item"> | ||
| 752 | - <i class="fa fa-tasks fa-fw"></i> New Task | ||
| 753 | - <span class="pull-right text-muted small"><em>43 minutes ago</em> | ||
| 754 | - </span> | ||
| 755 | - </a> | ||
| 756 | - <a href="#" class="list-group-item"> | ||
| 757 | - <i class="fa fa-upload fa-fw"></i> Server Rebooted | ||
| 758 | - <span class="pull-right text-muted small"><em>11:32 AM</em> | ||
| 759 | - </span> | ||
| 760 | - </a> | ||
| 761 | - <a href="#" class="list-group-item"> | ||
| 762 | - <i class="fa fa-bolt fa-fw"></i> Server Crashed! | ||
| 763 | - <span class="pull-right text-muted small"><em>11:13 AM</em> | ||
| 764 | - </span> | ||
| 765 | - </a> | ||
| 766 | - <a href="#" class="list-group-item"> | ||
| 767 | - <i class="fa fa-warning fa-fw"></i> Server Not Responding | ||
| 768 | - <span class="pull-right text-muted small"><em>10:57 AM</em> | ||
| 769 | - </span> | ||
| 770 | - </a> | ||
| 771 | - <a href="#" class="list-group-item"> | ||
| 772 | - <i class="fa fa-shopping-cart fa-fw"></i> New Order Placed | ||
| 773 | - <span class="pull-right text-muted small"><em>9:49 AM</em> | ||
| 774 | - </span> | ||
| 775 | - </a> | ||
| 776 | - <a href="#" class="list-group-item"> | ||
| 777 | - <i class="fa fa-money fa-fw"></i> Payment Received | ||
| 778 | - <span class="pull-right text-muted small"><em>Yesterday</em> | ||
| 779 | - </span> | ||
| 780 | - </a> | ||
| 781 | - </div> | ||
| 782 | - <!-- /.list-group --> | ||
| 783 | - <a href="#" class="btn btn-default btn-block">View All Alerts</a> | ||
| 784 | - </div> | ||
| 785 | - <!-- /.panel-body --> | ||
| 786 | - </div> | ||
| 787 | - <!-- /.panel --> | ||
| 788 | - <div class="panel panel-default"> | ||
| 789 | - <div class="panel-heading"> | ||
| 790 | - <i class="fa fa-bar-chart-o fa-fw"></i> Donut Chart Example | ||
| 791 | - </div> | ||
| 792 | - <div class="panel-body"> | ||
| 793 | - <div id="morris-donut-chart"></div> | ||
| 794 | - <a href="#" class="btn btn-default btn-block">View Details</a> | ||
| 795 | - </div> | ||
| 796 | - <!-- /.panel-body --> | ||
| 797 | - </div> | ||
| 798 | - <!-- /.panel --> | ||
| 799 | - <div class="chat-panel panel panel-default"> | ||
| 800 | - <div class="panel-heading"> | ||
| 801 | - <i class="fa fa-comments fa-fw"></i> Chat | ||
| 802 | - <div class="btn-group pull-right"> | ||
| 803 | - <button type="button" class="btn btn-default btn-xs dropdown-toggle" data-toggle="dropdown"> | ||
| 804 | - <i class="fa fa-chevron-down"></i> | ||
| 805 | - </button> | ||
| 806 | - <ul class="dropdown-menu slidedown"> | ||
| 807 | - <li> | ||
| 808 | - <a href="#"> | ||
| 809 | - <i class="fa fa-refresh fa-fw"></i> Refresh | ||
| 810 | - </a> | ||
| 811 | - </li> | ||
| 812 | - <li> | ||
| 813 | - <a href="#"> | ||
| 814 | - <i class="fa fa-check-circle fa-fw"></i> Available | ||
| 815 | - </a> | ||
| 816 | - </li> | ||
| 817 | - <li> | ||
| 818 | - <a href="#"> | ||
| 819 | - <i class="fa fa-times fa-fw"></i> Busy | ||
| 820 | - </a> | ||
| 821 | - </li> | ||
| 822 | - <li> | ||
| 823 | - <a href="#"> | ||
| 824 | - <i class="fa fa-clock-o fa-fw"></i> Away | ||
| 825 | - </a> | ||
| 826 | - </li> | ||
| 827 | - <li class="divider"></li> | ||
| 828 | - <li> | ||
| 829 | - <a href="#"> | ||
| 830 | - <i class="fa fa-sign-out fa-fw"></i> Sign Out | ||
| 831 | - </a> | ||
| 832 | - </li> | ||
| 833 | - </ul> | ||
| 834 | - </div> | ||
| 835 | - </div> | ||
| 836 | - <!-- /.panel-heading --> | ||
| 837 | - <div class="panel-body"> | ||
| 838 | - <ul class="chat"> | ||
| 839 | - <li class="left clearfix"> | ||
| 840 | - <span class="chat-img pull-left"> | ||
| 841 | - <img src="http://placehold.it/50/55C1E7/fff" alt="User Avatar" class="img-circle" /> | ||
| 842 | - </span> | ||
| 843 | - <div class="chat-body clearfix"> | ||
| 844 | - <div class="header"> | ||
| 845 | - <strong class="primary-font">Jack Sparrow</strong> | ||
| 846 | - <small class="pull-right text-muted"> | ||
| 847 | - <i class="fa fa-clock-o fa-fw"></i> 12 mins ago | ||
| 848 | - </small> | ||
| 849 | - </div> | ||
| 850 | - <p> | ||
| 851 | - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. | ||
| 852 | - </p> | ||
| 853 | - </div> | ||
| 854 | - </li> | ||
| 855 | - <li class="right clearfix"> | ||
| 856 | - <span class="chat-img pull-right"> | ||
| 857 | - <img src="http://placehold.it/50/FA6F57/fff" alt="User Avatar" class="img-circle" /> | ||
| 858 | - </span> | ||
| 859 | - <div class="chat-body clearfix"> | ||
| 860 | - <div class="header"> | ||
| 861 | - <small class=" text-muted"> | ||
| 862 | - <i class="fa fa-clock-o fa-fw"></i> 13 mins ago</small> | ||
| 863 | - <strong class="pull-right primary-font">Bhaumik Patel</strong> | ||
| 864 | - </div> | ||
| 865 | - <p> | ||
| 866 | - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. | ||
| 867 | - </p> | ||
| 868 | - </div> | ||
| 869 | - </li> | ||
| 870 | - <li class="left clearfix"> | ||
| 871 | - <span class="chat-img pull-left"> | ||
| 872 | - <img src="http://placehold.it/50/55C1E7/fff" alt="User Avatar" class="img-circle" /> | ||
| 873 | - </span> | ||
| 874 | - <div class="chat-body clearfix"> | ||
| 875 | - <div class="header"> | ||
| 876 | - <strong class="primary-font">Jack Sparrow</strong> | ||
| 877 | - <small class="pull-right text-muted"> | ||
| 878 | - <i class="fa fa-clock-o fa-fw"></i> 14 mins ago</small> | ||
| 879 | - </div> | ||
| 880 | - <p> | ||
| 881 | - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. | ||
| 882 | - </p> | ||
| 883 | - </div> | ||
| 884 | - </li> | ||
| 885 | - <li class="right clearfix"> | ||
| 886 | - <span class="chat-img pull-right"> | ||
| 887 | - <img src="http://placehold.it/50/FA6F57/fff" alt="User Avatar" class="img-circle" /> | ||
| 888 | - </span> | ||
| 889 | - <div class="chat-body clearfix"> | ||
| 890 | - <div class="header"> | ||
| 891 | - <small class=" text-muted"> | ||
| 892 | - <i class="fa fa-clock-o fa-fw"></i> 15 mins ago</small> | ||
| 893 | - <strong class="pull-right primary-font">Bhaumik Patel</strong> | ||
| 894 | - </div> | ||
| 895 | - <p> | ||
| 896 | - Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur bibendum ornare dolor, quis ullamcorper ligula sodales. | ||
| 897 | - </p> | ||
| 898 | - </div> | ||
| 899 | - </li> | ||
| 900 | - </ul> | ||
| 901 | - </div> | ||
| 902 | - <!-- /.panel-body --> | ||
| 903 | - <div class="panel-footer"> | ||
| 904 | - <div class="input-group"> | ||
| 905 | - <input id="btn-input" type="text" class="form-control input-sm" placeholder="Type your message here..." /> | ||
| 906 | - <span class="input-group-btn"> | ||
| 907 | - <button class="btn btn-warning btn-sm" id="btn-chat"> | ||
| 908 | - Send | ||
| 909 | - </button> | ||
| 910 | - </span> | ||
| 911 | - </div> | ||
| 912 | - </div> | ||
| 913 | - <!-- /.panel-footer --> | ||
| 914 | - </div> | ||
| 915 | - <!-- /.panel .chat-panel --> | ||
| 916 | - </div> | ||
| 917 | - <!-- /.col-lg-4 --> | ||
| 918 | - </div> | ||
| 919 | - <!-- /.row --> | ||
| 920 | - </div> | ||
| 921 | - <!-- /#page-wrapper --> | ||
| 922 | - | ||
| 923 | - </div> | ||
| 924 | - <!-- /#wrapper --> | ||
| 925 | - | ||
| 926 | - <!-- jQuery --> | ||
| 927 | - <script src="../vendor/jquery/jquery.min.js"></script> | ||
| 928 | - | ||
| 929 | - <!-- Bootstrap Core JavaScript --> | ||
| 930 | - <script src="../vendor/bootstrap/js/bootstrap.min.js"></script> | ||
| 931 | - | ||
| 932 | - <!-- Metis Menu Plugin JavaScript --> | ||
| 933 | - <script src="../vendor/metisMenu/metisMenu.min.js"></script> | ||
| 934 | - | ||
| 935 | - <!-- Morris Charts JavaScript --> | ||
| 936 | - <script src="../vendor/raphael/raphael.min.js"></script> | ||
| 937 | - <script src="../vendor/morrisjs/morris.min.js"></script> | ||
| 938 | - <script src="../data/morris-data.js"></script> | ||
| 939 | - | ||
| 940 | - <!-- Custom Theme JavaScript --> | ||
| 941 | - <script src="../dist/js/sb-admin-2.js"></script> | ||
| 942 | - | ||
| 943 | -</body> | ||
| 944 | - | ||
| 945 | -</html> |
-
Please register or login to post a comment