-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
115 lines (97 loc) · 4 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title ng-bind="page.title"></title> <!--ng-bind="page.title"-->
<meta name="description" content="" />
<meta name="Author" content="Paul Millar" />
<base href="/index.html">
<!-- mobile settings -->
<meta name="viewport" content="width=device-width, maximum-scale=1, initial-scale=1, user-scalable=0" />
<!-- WEB FONTS -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700,800&subset=latin,latin-ext,cyrillic,cyrillic-ext" rel="stylesheet" type="text/css" />
<!-- CORE CSS -->
<link href="assets/plugins/bootstrap/css/bootstrap.css" rel="stylesheet" type="text/css" />
<!-- THEME CSS -->
<link href="assets/css/essentials.css" rel="stylesheet" type="text/css" />
<link href="assets/css/layout.css" rel="stylesheet" type="text/css" />
<link href="assets/css/custom.css" rel="stylesheet" type="text/css" />
</head>
<!--
.boxed = boxed version
-->
<body>
<!-- WRAPPER -->
<div id="wrapper" class="clearfix">
<!-- ASIDE -->
<aside id="aside">
<!--
Always open:
<li class="active alays-open">
LABELS:
<span class="label label-danger pull-right">1</span>
<span class="label label-default pull-right">1</span>
<span class="label label-warning pull-right">1</span>
<span class="label label-success pull-right">1</span>
<span class="label label-info pull-right">1</span>
-->
<nav id="sideNav">
<!-- MAIN MENU -->
<ul class="nav nav-list">
<li class="">
<a class="" href="/areacharts">
<i class="main-icon fa fa-area-chart"></i> <span>Area Charts</span>
</a>
</li>
<li class="">
<a class="" href="/linecharts">
<i class="main-icon fa fa-line-chart"></i> <span>Line Charts</span>
</a>
</li>
<li>
<!--id="search-list-item"-->
<a class="" href="/barcharts">
<i class="main-icon fa fa-bar-chart"></i> <span>Bar Charts</span>
</a>
</li>
<li>
<a class="" href="/piecharts">
<i class="main-icon fa fa-pie-chart"></i> <span>Pie Charts</span>
</a>
</li>
<li>
<a class="" href="/inlinecharts">
<i class="main-icon fa fa-list"></i> <span>Inline Charts</span>
</a>
</li>
</ul>
</nav>
<span id="asidebg"><!-- aside fixed background --></span>
</aside>
<!-- /ASIDE -->
<!-- HEADER -->
<header id="header">
<!-- Mobile Button -->
<button id="mobileMenuBtn"></button>
<!-- Logo -->
<span class="logo pull-left">
<img src="assets/images/logo_light.png" alt="admin panel" height="35" />
</span>
</header>
<!-- /HEADER -->
<!-- MIDDLE -->
<section id="middle" class="padding-top-50">
<header id="page-header">
<h1 ng-bind="page.subTitle"></h1>
<ol class="breadcrumb">
<li><span ng-bind="page.description"></span></li>
</ol>
</header>
<div ng-view></div>
</section>
<!-- /MIDDLE -->
</div>
<script src="assets/plugins/require/require.js" data-main="app/core/requireConfig.js"></script>
</body>
</html>