diff --git a/src/hello.html b/src/hello.html new file mode 100644 index 0000000..0aca020 --- /dev/null +++ b/src/hello.html @@ -0,0 +1,77 @@ + + + + Singapore Schools + + + + + + + + + + + + + + + + + +
+

Hello World

+ The body of this page uses the TableCtrl assigned below in the javascript block.
+ This is not a great way to do this, but it is good for teaching and quick mockups.
+ We can see that myMessage in the controller is {{myMessage}}.
+
+ We can also use ng-repeat to iterate over a static list.
+
    +
  1. + {{food}} +
  2. +
+ + Or fetch data from Firebase and iterate over that.
+ +
    +
  1. + {{school.name}} +
  2. +
+ +
+
+ You can mockup new HTML pages and Angularjs partials with static data in the controllers
+ or by pulling static data from a hosted JSON file in the same directory.
+ + + + + +