open-vault/ui/app/templates/application.hbs
2018-11-20 15:15:52 -08:00

37 lines
1.2 KiB
Handlebars

<div class="page-container">
{{outlet}}
<footer class="footer has-text-grey">
<div class="level">
<div class="level-item is-size-7 has-text-centered">
<span class="has-text-grey-light">
{{i-con glyph="hashicorp" size=18 aria-label="HashiCorp logo" }}
</span>
<span class="is-inline-block">
&copy; {{date-format (now) "YYYY"}} HashiCorp, Inc.
</span>
<span>
Vault {{activeCluster.leaderNode.version}}
</span>
{{#if (is-version "OSS")}}
<span>
{{#upgrade-link linkClass="has-text-grey"}}
Upgrade to Vault Enterprise
{{/upgrade-link}}
</span>
{{/if}}
<span>
<a class="has-text-grey" target="_blank" rel="noreferrer noopener" href="https://www.vaultproject.io/docs/index.html">Documentation</a>
</span>
</div>
</div>
</footer>
{{#if (eq env "development") }}
<div class="env-banner level development">
<div class="level-item notification has-background-dark has-text-white">
{{i-con glyph="wand" class="type-icon"}}Local Development
</div>
</div>
{{/if}}
<div id="modal-wormhole"></div>
</div>