Ghost/core/client/helpers/index.js
John O'Nolan d1957958e3 Cleanup indentation and quotes
Aligns all requirements vertically for easier reading + adds single quote standard consistently throughout Ghost, except in long strings.
2013-09-26 15:06:31 +01:00

17 lines
421 B
JavaScript

/*globals Handlebars, moment
*/
(function () {
'use strict';
Handlebars.registerHelper('date', function (context, block) {
var f = block.hash.format || 'MMM Do, YYYY',
timeago = block.hash.timeago,
date;
if (timeago) {
date = moment(context).fromNow();
} else {
date = moment(context).format(f);
}
return date;
});
}());