<script src="/js/angular.js1.4.6/angular.min.js"></script>
<div ng-app="myApp" ng-controller="siteCtrl">
<li ng-repeat="x in names">
{{ x.Name + ', ' + x.Country }}
var app = angular.module('myApp', []);
app.controller('siteCtrl', function($scope, $http) {
$http.get("/jsjq/angularjs/sites.htm")
.success(function (response) {$scope.names = response.sites;});