food-widget.js
angular.module('homepage').
directive('foodWidget', function () {
return {
restrict: 'E',
replace: true,
scope: {
data: '='
},
transclude: true,
templateUrl: 'components/feature-components/food/food-widget.html'
};
});