diff options
| author | Guillaume Horel <guillaume.horel@gmail.com> | 2012-04-02 02:13:32 -0400 |
|---|---|---|
| committer | Guillaume Horel <guillaume.horel@gmail.com> | 2012-04-02 02:13:32 -0400 |
| commit | 9b142c6dc7d5736acc45142a5d42c4511fc49edc (patch) | |
| tree | c236e9ec0dcc67e6809bd7addad012e41d5bf9b7 /app/index.html | |
| parent | a5edfb4b0a960307cdabcfab87d8bdae94f06b74 (diff) | |
| download | alias-9b142c6dc7d5736acc45142a5d42c4511fc49edc.tar.gz | |
new angular branch
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> |
