Skip to content

Commit 6d4f074

Browse files
committed
step-0 bootstrap angular app
- add ngApp directive to bootstrap the app - add simple template with an expression
1 parent da574a1 commit 6d4f074

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/index.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!doctype html>
2-
<html lang="en">
2+
<html lang="en" ng-app>
33
<head>
44
<meta charset="utf-8">
55
<title>My HTML File</title>
@@ -8,5 +8,8 @@
88
<script src="lib/angular/angular.js"></script>
99
</head>
1010
<body>
11+
12+
<p>Nothing here {{'yet' + '!'}}</p>
13+
1114
</body>
1215
</html>

0 commit comments

Comments
 (0)