place-card.js
angular.module('homepage').
directive('placeCard', function () {
return {
//controller: 'PlaceCardController',
restrict: 'E',
replace: true,
scope: {
placeData: '='
},
transclude: true,
templateUrl: 'components/feature-components/place/place-card.html'
};
});