commit-section.hbs 381 B

1234567891011121314151617
  1. {{#if title ~}}
  2. {{ header }}
  3. {{#if commits.length ~}}
  4. {{#each commits ~}}
  5. {{#tf-a-mdlist 0}}{{> commit root=@root showScope=../topLevel }}{{/tf-a-mdlist ~}}
  6. {{/each}}
  7. {{/if ~}}
  8. {{#if sections.length ~}}
  9. {{#each sections ~}}
  10. {{#tf-a-mdlist 0}}{{> tf-a-commit-section root=@root header=(tf-a-concat "**" title "**") }}{{/tf-a-mdlist}}
  11. {{/each}}
  12. {{/if ~}}
  13. {{/if}}