open-consul/ui-v2/app/templates/application.hbs
John Cowen 6bf6002ab0
ui: Move slots to use attributes over positional params (#7032)
* Change all instances of yield/block-slots to use attributes over positional arguments

* Remove the ability to use yield/block-slots with positional params
2020-01-15 09:15:54 +00:00

12 lines
334 B
Handlebars

{{#if (not loading)}}
{{outlet}}
{{else}}
{{#hashicorp-consul id="wrapper" permissions=permissions dcs=dcs dc=dc nspaces=nspaces nspace=nspace}}
{{#app-view class="loading show"}}
{{#block-slot name='content'}}
{{partial 'consul-loading'}}
{{/block-slot}}
{{/app-view}}
{{/hashicorp-consul}}
{{/if}}