JSFiddle - React, Tailwind, and code Playground

HTML

<div ng-app="templeApp" ng-controller="templeList">
				<div ng-repeat="temple in temples track by $index" >
	
					<h2>{{temple.strTempleName}}</h2>
					<h4>{{temple.strTempleDescription}}</h4>
					<h4>5km from current location</h4>
		</div>  
    </div>

JavaScript

var templeApp = angular.module('templeApp', [])
.controller('templeList',function($scope,$http){
	$scope.temples = [{"_id":"new","strTempleName":"Temple 1 Name","strTempleDescription":"Temple 1 description","strContactNumber":"+91899999999","strTempleLocation":"Chennai","iTempleRating":5,"strContactPersonName":"","strTempleCoordinates":""}] ;
    $http.get("https://gist.githubusercontent.com/vigneshvdm/d106ea482a792c60dff8/raw/c8f020eb54c4068e40884b8d84c972d92e8e4e08/vicky%20test%20file").success(function(data){
		$scope.temples = data[0];  //uncomment this line to see error
		console.log(data[0]);
	});
});