forked from joaogarin/angularadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·70 lines (50 loc) · 2.61 KB
/
Copy pathindex.html
File metadata and controls
executable file
·70 lines (50 loc) · 2.61 KB
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
<!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 angular 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 Fonts from the theme fonts directory -->
<link rel="stylesheet" href="fonts/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="fonts/weather-icons/css/weather-icons.min.css">
<!-- Include Jquery in the vendor folder -->
<script src="scripts/vendor/jquery-2.1.1.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="styles/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="styles/bootstrap-theme.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="scripts/vendor/bootstrap.min.js"></script>
<!-- Theme's own CSS file -->
<link rel="stylesheet" href="dist/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/app.js"></script>
</body>
</html>