Skip to content

Instantly share code, notes, and snippets.

@balupton
Last active October 13, 2015 08:18
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save balupton/4166882 to your computer and use it in GitHub Desktop.
Save balupton/4166882 to your computer and use it in GitHub Desktop.
DocPad: Localising Dates
# Requires
moment = require('moment').lang('fr') # set locale to french
# Define Configuration
docpadConfig =
templateData:
# Format the passed date, by default format like: Thursday, November 29 2012 3:53 PM
formatDate: (date,format='LLLL') -> return moment(date).format(format)
# Export Configuration
module.exports = docpadConfig
This document was last modified at: <%= @formatDate(@document.date) %>
@zenorocha
Copy link

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment