-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 889 Bytes
/
index.html
File metadata and controls
34 lines (33 loc) · 889 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
32
33
34
<!DOCTYPE html>
<html ng-app="app">
<head lang="en">
<meta charset="UTF-8">
<title>Angular Exercise 1</title>
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div ng-controller="BlogPostCtrl as blogPosta">
<div class="container">
<h2 class="page-header">How to use ng-repeat?</h2>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Author</th>
<th>Title</th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</tbody>
</table>
</div>
</div>
<script src="bower_components/angular/angular.js"></script>
<script src="BlogPostCtrl.js"></script>
</body>
</html>