mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 15:11:07 +02:00
28 lines
625 B
Handlebars
28 lines
625 B
Handlebars
{{!
|
|
Copyright (c) HashiCorp, Inc.
|
|
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> |