summaryrefslogtreecommitdiffstats
path: root/bench/templates/partial.js
blob: 949e9c075020776229dea8a54fc9e9dfd8a715f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
  context: { peeps: [{name: 'Moe', count: 15}, {name: 'Larry', count: 5}, {name: 'Curly', count: 1}] },
  partials: {
    mustache: { variables: 'Hello {{name}}! You have {{count}} new messages.' },
    handlebars: { variables: 'Hello {{name}}! You have {{count}} new messages.' }
  },

  handlebars: '{{#each peeps}}{{>variables}}{{/each}}',
  dust: '{#peeps}{>variables/}{/peeps}',
  mustache: '{{#peeps}}{{>variables}}{{/peeps}}'
};