-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.hbs
executable file
·37 lines (34 loc) · 1.2 KB
/
404.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{{> head}}
{{> navbar}}
<main class="main">
<div class="main__left">
{{#checkIfAll @config.custom.uploadHero @config.custom.displayHeroImage}}
<figure class="hero">
<img
src="{{@config.custom.uploadHero}}"
{{#if @config.site.responsiveImages}}
{{responsiveImageAttributes @config.custom.uploadHero}}
{{/if}}
{{ lazyload "eager" }}
{{imageDimensions @config.custom.uploadHero}}
alt="{{@config.custom.uploadHeroAlt}}">
{{#if @config.custom.uploadHeroCaption}}
<figcaption class="hero__caption">
{{@config.custom.uploadHeroCaption}}
</figcaption>
{{/if}}
</figure>
{{/checkIfAll}}
<header>
<h1>{{ translate 'error.404' }}</h1>
<p>{{ translate 'error.pageNotFound' }}</p>
</header>
</div>
<div class="main__right">
<div>
<h2>{{ translate 'error.message1' }}</h2>
<p>{{ translate 'error.message2' }}</p>
</div>
</div>
</main>
{{> footer}}