open-consul/ui-v2/app/templates/application.hbs
Kenia f6a7164d10
ui: Implements the ember-page-title addon to the UI (#7118)
* Installs ember-page-title 5.x

* Adds a page title to all template files that need one

* Adds an assertion step to test the page titles
2020-01-28 09:25:52 -05:00

14 lines
385 B
Handlebars

{{head-layout}}
{{title 'Consul' separator=' - '}}
{{#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}}