24 lines
302 B
Handlebars
24 lines
302 B
Handlebars
{{> header}}
|
|
|
|
{{#if noteGroups}}
|
|
{{#each noteGroups}}
|
|
|
|
### ⚠ {{title}}
|
|
|
|
{{#each notes}}
|
|
* {{#if commit.scope}}**{{commit.scope}}:** {{/if}}{{text}}
|
|
{{/each}}
|
|
{{/each}}
|
|
{{/if}}
|
|
{{#each commitGroups}}
|
|
|
|
{{#if title}}
|
|
### {{title}}
|
|
|
|
{{/if}}
|
|
{{#each commits}}
|
|
{{> commit root=@root}}
|
|
{{/each}}
|
|
|
|
{{/each}}
|