-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (48 loc) · 1.62 KB
/
index.html
File metadata and controls
53 lines (48 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- <meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate"/>
<meta http-equiv="Pragma" content="no-cache"/>
<meta http-equiv="Expires" content="-1"/> -->
<title>4BBB</title>
<link rel="stylesheet" href="deps/bootstrap.css">
<link rel="stylesheet" href="css/fonts.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/layout.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="deps/angular.js"></script>
<script src="deps/angular-resource.js"></script>
<script src="deps/angular-route.js"></script>
<script src="deps/bootstrap.js"></script>
<script src="deps/xml2json.min.js"></script>
<script src="js/utils.js"></script>
<script src="js/app.js"></script>
<script src="js/directives.js"></script>
<script src="js/filters.js"></script>
<script src="js/services.js"></script>
<script src="js/controllers/install.js"></script>
<script src="js/controllers/common.js"></script>
<script src="js/controllers/auth.js"></script>
<script src="js/controllers/meetings.js"></script>
<script src="js/controllers/settings.js"></script>
</head>
<body ng-app="BBBapp" ng-controller="CheckInst" ng-csp>
<section>
<section ng-if="installed != 'true'">
<div class="container">
<install></install>
</div>
</section>
<section ng-if="installed == 'true'">
<main-nav></main-nav>
<section class="container main">
<ng-view>
</section>
</section>
<section class="authors">
This site belongs to Krishna.
</section>
</section>
</body>
</html>