-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (32 loc) · 834 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
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<style>
.col {
float:left;
width:50%;
}
</style>
<script src="angular.js"></script>
<script src="angular-route.js"></script>
<script src="app.js"></script>
</head>
<body ng-app="funwithcountries">
<h1>Fun with Countries</h1>
<div ng-controller="CountryController as countryCtrl" class="col">
<ul>
<li ng-repeat="i in countryCtrl.countries">
<a href ng-href = "#/states/{{ i.code }}">
<img ng-src="images/{{ i.code }}.png">
{{ i.name }}
</a>
<state-view></state-view>
</li>
</ul>
</div>
<div class="col" ng-view>
</div>
</body>
</html>