-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.hbs
executable file
·43 lines (42 loc) · 1.52 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
38
39
40
41
42
43
{{> head}}
{{> top}}
<main>
<article class="post">
<div class="hero">
{{#checkIfAll @config.custom.uploadHero @config.custom.displayHeroImage}}
<figure class="hero__image hero__image--overlay">
<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>
{{@config.custom.uploadHeroCaption}}
</figcaption>
{{/if}}
</figure>
{{/checkIfAll}}
<header class="hero__content">
<div class="wrapper">
<h1>{{ translate 'error.404' }}</h1>
<p>{{ translate 'error.message-1' }}</p>
</div>
</header>
</div>
<div class="wrapper post__entry">
<p>{{ translate 'error.message-2' }}</p>
<p>
<svg width="1.041em" height="0.416em" aria-hidden="true">
<use xlink:href="{{@website.assetsUrl}}/svg/svg-map.svg#arrow-prev"/>
</svg>
<a href="{{@website.url}}" class="readmore">
{{ translate 'error.button' }}</a>
</p>
</div>
</article>
</main>
{{> footer}}