-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·55 lines (41 loc) · 2.05 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
<!doctype html>
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Admin Box - AngularJS theme</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,700italic,700,600,400' rel='stylesheet' type='text/css'>
<!-- Include Jquery in the vendor folder -->
<script src="dist/js/jquery.min.js"></script>
<!-- Theme's own CSS file -->
<link rel="stylesheet" href="dist/css/main.css">
</head>
<body data-ng-app="app" id="app" data-custom-background="" data-off-canvas-nav="" data-ng-controller="AdminAppCtrl">
<div>
<div data-ng-hide="checkIfOwnPage()" data-ng-cloak="" class="no-print">
<aside data-ng-include=" 'app/views/navigation.html' " id="nav-container"></aside>
</div>
<div class="view-container">
<div data-ng-hide="checkIfOwnPage()" data-ng-cloak="" class="no-print">
<section data-ng-include=" 'app/views/header.html' " id="header" class="top-header"></section>
</div>
<section data-ng-view="" id="content" class="animate-fade-up"></section>
</div>
</div>
<div class="page-loading-overlay"> <div class="loader-2"></div> </div>
<div class="load_circle_wrapper">
<div class="loading_spinner">
<div id="wrap_spinner">
<div class="loading outer">
<div class="loading inner"></div>
</div>
</div>
</div>
</div>
<!--Uncomment for deployment using Grunt-->
<script type="text/javascript" src="dist/js/app.js"></script>
</body>
</html>