-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.8 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!doctype html>
<html lang="en" data-ng-app="app">
<head>
<meta charset="utf-8">
<title>My Pokedex | {{ $root.title | ucfirst}}</title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/fontello.css">
<link rel="shortcut icon" href="img/icon.png">
</head>
<body>
<header>
<h1><a href='#'>My Pokedex</a></h1>
<nav>
<a data-ng-href="#/favorites" title="favorites">Favorites <i class="icon-heart"></i></a>
</nav>
</header>
<main>
<section id='content'>
<input type="text" data-ng-model="id" id="input" autofocus placeholder="Type a pokemon's name or id">
<br/>
<span class='button submit' data-ng-controller="pokemonCtrl" data-ng-click="click()">Submit <i class="icon-ok"></i></span>
<div data-ng-view data-ng-controller="pokemonCtrl">
</div>
</section>
</main>
<footer>
<section>
© 2016 | <i class="icon-html5"></i> <i class="icon-css3"></i>
</section>
<nav>
<a href="#" title="g+"><i class="icon-gplus"></i></a>
<a href="#" title="facebook"><i class="icon-facebook"></i></a>
<a href="#" title="twitter"><i class="icon-twitter"></i></a>
</nav>
</footer>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script>
<script type="text/javascript" src="https://code.angularjs.org/1.5.5/angular-route.min.js"></script>
<script type="text/javascript" src="app.js"></script>
<script type="text/javascript" src="controllers.js"></script>
</body>
</html>