-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path02-Directives.html
More file actions
31 lines (24 loc) · 861 Bytes
/
02-Directives.html
File metadata and controls
31 lines (24 loc) · 861 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>AngularJS</title>
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<script src="js/lib/angular.min.js"></script>
</head>
<body ng-app="" ng-init="countries = [{locale:'en-US',name:'United States'}, {locale:'en-GB',name:'United Kingdom'}, {locale:'en-FR',name:'France'}]">
<div>
<h1>Diretivas</h1>
</div>
<p>Lista de países com o código de internacionalização:</p>
<ol>
<li ng-repeat="country in countries">
{{ 'País: ' + country.name + ', Locale: ' + country.locale }}
</li>
</ol>
</body>
</html>