AngularJS Skeleton
A simple AngularJS skeleton.
examples/html/angular-skeleton.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=yes"> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.5/angular.min.js"></script> <script> angular.module('DemoApp', []) .controller('DemoController', ['$scope', function($scope) { $scope.message = "Hello World"; }]); </script> </head> <body ng-app="DemoApp" ng-controller="DemoController"> <h1>Main Title</h1> {{message}} </body> </html>

Published on 2016-05-06
If you have any comments or questions, feel free to post them on the source of this page in GitHub. Source on GitHub.
Comment on this post