-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (19 loc) · 812 Bytes
/
index.html
File metadata and controls
21 lines (19 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html ng-app="notesApp">
<head>
<link href='http://fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
<link href="css/index.css" rel="stylesheet">
<link href="css/welcome.css" rel="stylesheet">
<link href="css/notes.css" rel="stylesheet">
<link href="css/list.css" rel="stylesheet">
</head>
<body>
<div ui-view></div>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/firebase/firebase.js"></script>
<script src="bower_components/angularfire/dist/angularfire.js"></script>
<script src="js/app.js"></script>
<script src="views/listController.js"></script>
<script src="views/notesController.js"></script>
</body>
</html>