Finish module.html section (for now)

This commit is contained in:
Marc 2016-04-06 00:39:32 +01:00
parent dba53157fd
commit 0f14fb504e

View File

@ -60,3 +60,15 @@ Your code should now look like this:
</div> </div>
</div> </div>
``` ```
Finally, we will use an expression called `hello`. This is done with `{{hello}}`. Later, we will use this expression to display text from our PHP. You can learn more at [AngularJS - Scopes](https://docs.angularjs.org/guide/expression).
Our HTML code should now look like this:
```
<div class="row">
<div ng-controller="ExampleController" class="col-md-12">
{{hello}}
</div>
</div>
#### module.js