template.hbs 302 B

1234567891011121314151617181920212223
  1. {{> header}}
  2. {{#if noteGroups}}
  3. {{#each noteGroups}}
  4. ### ⚠ {{title}}
  5. {{#each notes}}
  6. * {{#if commit.scope}}**{{commit.scope}}:** {{/if}}{{text}}
  7. {{/each}}
  8. {{/each}}
  9. {{/if}}
  10. {{#each commitGroups}}
  11. {{#if title}}
  12. ### {{title}}
  13. {{/if}}
  14. {{#each commits}}
  15. {{> commit root=@root}}
  16. {{/each}}
  17. {{/each}}