-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (43 loc) · 2.47 KB
/
index.html
File metadata and controls
47 lines (43 loc) · 2.47 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
<!DOCTYPE html>
<html lang="en" ng-app="helloWorldApp">
<head>
<meta charset="UTF-8">
<title></title>
<!-- bower:css -->
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
<link rel="stylesheet" href="bower_components/angular-growl-v2/build/angular-growl.css" />
<link rel="stylesheet" href="bower_components/angular-ui-grid/ui-grid.css" />
<link rel="stylesheet" href="bower_components/angular-material/angular-material.css" />
<link rel="stylesheet" href="bower_components/pickadate/lib/themes/default.css" />
<link rel="stylesheet" href="bower_components/pickadate/lib/themes/default.date.css" />
<link rel="stylesheet" href="bower_components/pickadate/lib/themes/default.time.css" />
<!-- endbower -->
<!-- bower:js -->
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/angularjs/angular.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-messages/angular-messages.js"></script>
<script src="bower_components/angular-ui-growl/src/growl.js"></script>
<script src="bower_components/angular-growl-v2/build/angular-growl.js"></script>
<script src="bower_components/angular-ui-grid/ui-grid.js"></script>
<script src="bower_components/angular-animate/angular-animate.js"></script>
<script src="bower_components/angular-aria/angular-aria.js"></script>
<script src="bower_components/angular-material/angular-material.js"></script>
<script src="bower_components/ui-router/release/angular-ui-router.js"></script>
<script src="bower_components/oclazyload/dist/ocLazyLoad.js"></script>
<script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script>
<script src="bower_components/pickadate/lib/picker.js"></script>
<script src="bower_components/pickadate/lib/picker.date.js"></script>
<script src="bower_components/pickadate/lib/picker.time.js"></script>
<!-- endbower -->
<script src="app/directives/oobj-directives.js"></script>
<script src="app/directives/hello/hello-directive.js"></script>
<script src="app/directives/text-input/text-input.js"></script>
<script src="app/js/app-config-bootstrap.js"></script>
<script src="app/js/bootstrap-controller.js"></script>
</head>
<body ng-controller="BootstrapController">
<hello></hello>
<text-input label="Nome" ng-model="pessoa.nome" ng-required colspan="3"></text-input>
</body>
</html>