{{> header}}

{{#with model}}

# {{extensionTitle}}

{{#if hasComment}}

{{> comment}}

{{/if}}

{{/with}}

{{#with model}}

{{#if hasRoute}}
## {{pluralize 'Command' routeCount}}
{{#each children}}
{{#unless isExecuteMethod}}
{{> command}}
{{/unless}}
{{/each}}
{{/if}}

{{#if hasExecuteMethod}}
## Execute {{pluralize 'Method' execMethodCount}}
{{#each children}}
{{#if isExecuteMethod}}
{{> executeMethod}}
{{/if}}
{{/each}}
{{/if}}

{{/with}}
