diff options
Diffstat (limited to 'app/index.html')
| -rw-r--r-- | app/index.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/index.html b/app/index.html new file mode 100644 index 0000000..54f77b9 --- /dev/null +++ b/app/index.html @@ -0,0 +1,22 @@ +<!doctype html> +<html ng-app="Alias"> +<head> + <meta charset="utf-8"> + <title>Alias</title> + <link rel="stylesheet" href="css/app.css"/> +</head> +<body> + <div ng-controller="RosterCtl"> + <ul> + <li ng-repeat="contact in roster">{{contact}}</li> + </ul> + </div> + <script src="lib/angular/angular.js"></script> + <script src="js/alias.js"></script> + <script src="lib/strophe/strophe.js"></script> + <script src="js/services.js"></script> + <script src="js/controllers.js"></script> + <script src="js/filters.js"></script> + <script src="js/directives.js"></script> +</body> +</html> |
