mirror of
https://github.com/hashicorp/vault.git
synced 2025-12-26 20:01:12 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
28 lines
626 B
Handlebars
28 lines
626 B
Handlebars
{{!
|
|
Copyright IBM Corp. 2016, 2025
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
}}
|
|
|
|
<PageHeader as |p|>
|
|
{{#if @breadcrumbs}}
|
|
<p.top>
|
|
<Page::Breadcrumbs @breadcrumbs={{@breadcrumbs}} />
|
|
</p.top>
|
|
{{/if}}
|
|
|
|
<p.levelLeft>
|
|
<h1 class="title is-3 has-bottom-margin-m" data-test-page-title>
|
|
{{#if @icon}}
|
|
<Icon @name={{@icon}} @size="24" />
|
|
{{/if}}
|
|
{{@title}}
|
|
{{#if this.flags.isHvdManaged}}
|
|
<Hds::Badge @text="Plus feature" @color="highlight" @size="large" />
|
|
{{/if}}
|
|
</h1>
|
|
</p.levelLeft>
|
|
|
|
<p.levelRight>
|
|
{{yield to="actions"}}
|
|
</p.levelRight>
|
|
</PageHeader> |