tshm
8/28/2014 - 6:27 AM

template.html

template.html

<!doctype html>
<html>
<head>
<meta charset="utf-8" content="IE=EDGE"/>
</head>
<body ng-app="App">

<div ng-controller="Ctrl">

  {{ v }}

</div>

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.js"></script>
<script>
angular.module('App', [])
.controller('Ctrl', function($scope) {
  $scope.v = 'test';
});
</script>
</body>
</html>