-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
27 lines (24 loc) · 1014 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Pokedex</title>
<link rel="stylesheet" type="text/css" href="bower_components/bootstrap/dist/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="src/app.css">
</head>
<body ng-app="pokedex">
<div class='container'>
<h1 class='text-center'>Bem vindo a Pokedex</h1>
<navegacao></navegacao>
<ui-view></ui-view>
</div>
</body>
<!-- vendor scripts -->
<script type="text/javascript" src='bower_components/angular/angular.js'></script>
<script type="text/javascript" src='bower_components/angular-bootstrap/ui-bootstrap-tpls.js'></script>
<script type="text/javascript" src='bower_components/ui-router/release/angular-ui-router.js'></script>
<!-- app scripts -->
<script type="text/javascript" src='src/directives.js'></script>
<script type="text/javascript" src='src/services.js'></script>
<script type="text/javascript" src='src/controllers.js'></script>
<script type="text/javascript" src='src/app.js'></script>
</html>