-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 979 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!doctype html>
<html lang="en" ng-app="angularChat">
<head>
<title>Angular Chat</title>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/angular/angular.min.js"></script>
<script src="bower_components/angular-route/angular-route.min.js"></script>
<script type="text/javascript" src="node_modules/socket.io/node_modules/socket.io-client/dist/socket.io.min.js"></script>
<script src="dist/angularchat.min.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<br>
</div>
<div class="row">
<div ng-view>
</div>
</div>
</div>
</body>
</html>