-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
110 lines (85 loc) · 4.37 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
<!DOCTYPE html>
<!--[if lt IE 7]>
<html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js"> <!--<![endif]-->
<head>
<!-- Meta-Information -->
<title>Property Manager</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="Pankaj Bhatt Inc.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Vendor: Bootstrap Stylesheets http://getbootstrap.com -->
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="bower_components/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet">
<link href="bower_components/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="bower_components/angular-xeditable/dist/css/xeditable.css" rel="stylesheet">
<link href="bower_components/bootstrap-vertical-tabs/bootstrap.vertical-tabs.min.css" rel="stylesheet">
<link href="bower_components/angular-dialog-service/dist/dialogs.min.css" rel="stylesheet">
<!-- Our Website CSS Styles -->
<link rel="stylesheet" href="public/stylesheets/main.css">
<link rel="stylesheet" href="public/stylesheets/style.css">
</head>
<body ng-app="propServerUI">
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> to improve your experience.</p>
<![endif]-->
<!-- Our Website Content Goes Here -->
<div ng-include='"client/templates/header.html"'></div>
<div ng-view></div>
<div ng-include='"client/templates/footer.html"'></div>
<!-- Vendor: Javascripts -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- Vendor: Angular, followed by our custom Javascripts -->
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<script src="bower_components/angular-xeditable/dist/js/xeditable.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap.min.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script src="bower_components/angular-modal-service/dst/angular-modal-service.min.js"></script>
<script src="bower_components/angular-sanitize/angular-sanitize.min.js"></script>
<script src="bower_components/angular-translate/angular-translate.min.js"></script>
<script src="bower_components/angular-dialog-service/dist/dialogs.min.js"></script>
<script src="client/controllers/addProjectController.js"></script>
<script src="client/controllers/addReleaseController.js"></script>
<script src="client/controllers/addPropGroupController.js"></script>
<script src="client/controllers/addEnvironmentController.js"></script>
<script src="client/controllers/homeController.js"></script>
<script src="client/controllers/copyPropertiesController.js"></script>
<script src="client/services/globalService.js"></script>
<script src="client/services/projectService.js"></script>
<script src="client/services/environmentService.js"></script>
<script src="client/services/releaseService.js"></script>
<script src="client/services/propGroupService.js"></script>
<script src="client/services/keysService.js"></script>
<!-- App Angular scripts -->
<script src="client/translate.js"></script>
<script src="client/main.js"></script>
</body>
</html>
<!-- All copied from
http://airpair.github.io/demos/2014/09/T0021-airpair-angularjs-tutorial/#/services
https://github.com/charneykaye/angularjs-tutorial-1
Vertical Tabs:
https://libraries.io/bower/bootstrap-vertical-tabs
Select BOXES.
https://angular-ui.github.io/bootstrap
Angluar MOdal service.
https://github.com/dwmkerr/angular-modal-service
http://dwmkerr.github.io/angular-modal-service/
BootStrap buttons.
http://charliepark.org/bootstrap_buttons/
Bootstrap Icons
http://fortawesome.github.io/Font-Awesome/icons/#web-application
Gradient at the top.
http://stackoverflow.com/questions/18529274/change-navbar-color-in-twitter-bootstrap-3
Header color in Green.
http://www.natebal.com/blog/real-quick-css-tip-css-gradients-drop-shadows-bootstrap/
-->