Skip to content

Instantly share code, notes, and snippets.

@spullara
Last active December 14, 2015 17:59
Show Gist options
  • Save spullara/5126121 to your computer and use it in GitHub Desktop.
Save spullara/5126121 to your computer and use it in GitHub Desktop.
Mustache blog post
{{#user}}{{username}} joined on {{createdAt}}{{/user}}
{{#user}}{{username}} joined on {{createdAt | date}}{{/user}}
{{#user}}
{{username}} joined on {{createdAt | date("DD/mm/YYYY")}}
{{/user}}
class User {
String username;
long createdAt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment