profile-summary.js
angular.module('homepage').
directive('profileSummary', function() {
return {
restrict: 'E',
replace: true,
scope: {
data: '='
},
templateUrl: 'components/content-components/input/profile-summary.html',
controller: 'profileSummaryController'
};
}).
controller('profileSummaryController', function($scope) {
});