Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 38ea50b

Browse files
IgorMinargkalpak
authored andcommitted
step-0 Bootstrapping
- Add the 'angular.js' script. - Add the `ngApp` directive to bootstrap the application. - Add a simple template with an expression.
1 parent 65bbbfd commit 38ea50b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

app/index.html

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
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>
66
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" />
7+
<script src="bower_components/angular/angular.js"></script>
78
</head>
89
<body>
9-
<!-- CONTENT -->
10+
11+
<p>Nothing here {{'yet' + '!'}}</p>
12+
1013
</body>
1114
</html>

0 commit comments

Comments
 (0)