2022-05-21 00:40:16 +00:00
|
|
|
{{#if this.showTruncatedNavBar}}
|
|
|
|
<NavHeader as |Nav|>
|
|
|
|
<Nav.home>
|
|
|
|
<HomeLink @class="navbar-item splash-page-logo has-text-white">
|
|
|
|
<LogoEdition />
|
|
|
|
</HomeLink>
|
|
|
|
</Nav.home>
|
|
|
|
<Nav.items>
|
|
|
|
<div class="navbar-item status-indicator-button" data-status={{if this.activeCluster.unsealed "good" "bad"}}>
|
2022-05-31 17:28:52 +00:00
|
|
|
<StatusMenu @label="Status" @onLinkClick={{Nav.closeDrawer}} />
|
2022-05-21 00:40:16 +00:00
|
|
|
</div>
|
|
|
|
</Nav.items>
|
|
|
|
</NavHeader>
|
|
|
|
{{/if}}
|
2023-02-16 22:44:33 +00:00
|
|
|
{{! bypass container styling }}
|
2022-05-31 17:28:52 +00:00
|
|
|
{{#if @hasAltContent}}
|
2022-02-17 22:40:25 +00:00
|
|
|
{{yield (hash altContent=(component "splash-page/splash-content"))}}
|
|
|
|
{{else}}
|
2023-02-16 22:44:33 +00:00
|
|
|
<div class="splash-page-container section is-flex-v-centered-tablet is-flex-1 is-fullwidth">
|
|
|
|
<div class="columns is-centered is-gapless is-fullwidth">
|
|
|
|
<div class="column is-4-desktop is-6-tablet">
|
|
|
|
<div class="splash-page-header">
|
|
|
|
{{yield (hash header=(component "splash-page/splash-header"))}}
|
2018-08-28 05:03:55 +00:00
|
|
|
</div>
|
2023-02-16 22:44:33 +00:00
|
|
|
<div class="splash-page-sub-header">
|
|
|
|
{{yield (hash sub-header=(component "splash-page/splash-header"))}}
|
|
|
|
</div>
|
|
|
|
<div class="login-form box is-paddingless is-relative">
|
|
|
|
{{yield (hash content=(component "splash-page/splash-content"))}}
|
|
|
|
</div>
|
|
|
|
{{yield (hash footer=(component "splash-page/splash-content"))}}
|
2018-06-26 21:35:47 +00:00
|
|
|
</div>
|
2018-04-03 14:16:57 +00:00
|
|
|
</div>
|
2023-02-16 22:44:33 +00:00
|
|
|
</div>
|
2022-02-17 22:40:25 +00:00
|
|
|
{{/if}}
|