template.hbs 153 B

12345678910111213141516
  1. {{> header}}
  2. {{#each commitGroups}}
  3. {{#if title}}
  4. ### {{title}}
  5. {{/if}}
  6. {{#each commits}}
  7. {{> commit root=@root}}
  8. {{/each}}
  9. {{/each}}
  10. {{> footer}}