I want one of the existing product.post-summary to look like - Hello, World!
main.html
<div class="hero" ng-controller="MainCtrl as store"> <div class="half-item" ng-repeat="product in store.products | limitTo: 4 : 8"> <p>{{product.post-summary}}</p> </div> </div> articles.json
[ { "name": "US Election Rundown October 4th 2016: Pre-VP Debate", "author": "Daniel Berman", "category": "US Election 2016 Rundown", "main-image": "../images/articles/trump-&-clinton.jpg", "date-created": 1475539200 }, { "name": "US Election Rundown September 30th 2016", "author": "Daniel Berman", "category": "US Election 2016 Rundown", "main-image": "../images/articles/trump-&-clinton.jpg", "date-created": 1475193600 }, { "name": "US Election Rundown September 28th 2016", "author": "Daniel Berman", "category": "US Election 2016 Rundown", "post-summary": "Hello, World!", "main-image": "../images/articles/trump-&-clinton.jpg", "date-created": 1475020800 }, { "name": "October 26 US Election 2016 Rundown", "author": "Daniel Berman", "category": " US Election 2016 Rundown", "main-image": "../images/articles/trump-clinton.jpg", "date-created": 1477440000 } ] main.js (AngularJS)
angular.module('ngRestlessApp') .controller('MainCtrl',['$http', function ($http) { var store = this; store.products = [ ]; $http.get('scripts/articles/articles.json').success(function(data){ store.products = data; }); }]);