-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootstrap2.html
78 lines (72 loc) · 3.98 KB
/
bootstrap2.html
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!doctype html>
<html lang="pt" ng-app="helloWorldApp">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{titulo}}</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/classic.css" />
<link rel="stylesheet" href="bower_components/pickadate/lib/themes/classic.date.css" />
<link rel="stylesheet" href="bower_components/pickadate/lib/themes/classic.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/js/app-config-bootstrap.js"></script>
<script src="app/js/bootstrap-controller.js"></script>
<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/directives/select-input/select-input.js"></script>
<script src="app/directives/date-input/date-input.js"></script>
<script src="app/directives/crud/crud.js"></script>
<script src="//localhost:35729/livereload.js"></script>
<script type="text/ng-template" id="error-messages">
<p ng-message="minlength">Campo muito curto</p>
<p ng-message="maxlength">Campo muito longo</p>
<p ng-message="required">Campo obrigatório</p>
</script>
</head>
<body>
<div ng-controller="BootstrapController" class="container" md-theme="green">
<div>
<md-toolbar>
<div class="md-toolbar-tools">
<ul class="nav nav-pills">
<li><a ui-sref="home">Home</a></li>
<li><a ui-sref="produto({id: 10})">Cadastro de Produto</a></li>
<li><a ui-sref="produto.pesquisa">Pesquisa de Produto</a></li>
<li><a ui-sref="pessoa.cadastro">Cadastro de Pessoa</a></li>
<li><a ui-sref="pessoa.pesquisa">Pesquisa de Pessoa</a></li>
</ul>
</div>
</md-toolbar>
</div>
<div>
<hello></hello>
</div>
<div>
<div ui-view></div>
</div>
</div>
</body>
</html>