2018-06-26 21:35:47 +00:00
|
|
|
<NavHeader data-test-header-without-nav as |Nav|>
|
|
|
|
<Nav.home>
|
|
|
|
<HomeLink @class="navbar-item splash-page-logo">
|
2019-02-14 15:39:19 +00:00
|
|
|
<LogoEdition />
|
2018-06-26 21:35:47 +00:00
|
|
|
</HomeLink>
|
|
|
|
</Nav.home>
|
|
|
|
</NavHeader>
|
2018-04-03 14:16:57 +00:00
|
|
|
<section class="section">
|
|
|
|
<div class="container">
|
|
|
|
{{#if (eq model.httpStatus 404)}}
|
|
|
|
{{not-found model=model}}
|
|
|
|
{{else}}
|
2018-06-12 21:06:37 +00:00
|
|
|
<PageHeader as |p|>
|
|
|
|
<p.levelLeft>
|
|
|
|
<h1 class="title is-3 has-text-grey">
|
|
|
|
{{#if (eq model.httpStatus 403)}}
|
|
|
|
Not authorized
|
|
|
|
{{else}}
|
|
|
|
Error
|
|
|
|
{{/if}}
|
|
|
|
</h1>
|
|
|
|
</p.levelLeft>
|
|
|
|
</PageHeader>
|
2018-10-10 04:37:28 +00:00
|
|
|
<BlockError>
|
2018-04-03 14:16:57 +00:00
|
|
|
{{#if model.message}}
|
|
|
|
<p>{{model.message}}</p>
|
|
|
|
{{/if}}
|
|
|
|
{{#each model.errors as |error|}}
|
|
|
|
<p>{{error}}</p>
|
|
|
|
{{/each}}
|
2018-10-10 04:37:28 +00:00
|
|
|
</BlockError>
|
2018-04-03 14:16:57 +00:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</section>
|