Define getDatetime method on scope
scope.getDatetime = function() {
return (new Date).toLocaleFormat("%A, %B %e, %Y");
};
Then in template:
{{getDatetime()}}
Doc to format date https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/toLocaleFormat