-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy patherror.njk
53 lines (53 loc) · 2.1 KB
/
error.njk
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
44
45
46
47
48
49
50
51
52
53
---
title : 'Page not Found | EmptyWork'
description: "The page that you are looking for does not exist"
layout: 'layouts/secondary.njk'
style: 'error.css'
---
<main id="main" class="main">
<section aria-labelledby="contact" class="contact">
<div class="main-container">
<header class="section-header" data-animation="fade-in">
<span>
<a class="breadcrumb" href="/">Home</a> ›
<span class="breadcrumb">Page Not Found</span>
</span>
<h1 id="error" class="header-title">
<a class="header-link__access" href="#contact">
<span aria-hidden="true">#</span>
<span class="sr-only">Link to heading "Error"</span>
</a>
Page Not Found
</h1>
</header>
<div class="error-container">
<div class="error-summary" data-animation="fade-in">
<div class="error-decorative" data-animation="fade-in">
{% include "components/svg/logo.njk" %}
<div class="decorative-left">
<p class="decorative decorative-exclamation">!</p>
<p class="decorative decorative-question">?</p>
</div>
</div>
<h2 data-animation="fade-in" data-delay="1"><mark class="big-text highlight">404</mark> — The page that you
are looking for
does not exist</h2>
<p data-animation="fade-in" data-delay="2">Please <mark class="highlight">make sure that the URL</mark> you
typed are
correct, if you think that the
<mark class="highlight">URL is correct</mark> but you still cannot seems to access it please <a
href="mailto:[email protected]">contact me via email</a>
</p>
</div>
<ul class="error-button">
<li data-animation="fade-in" data-delay="4">
<a class="error-link" href="{{ link.website }}">Go to Home</a>
</li>
<li data-animation="fade-in" data-delay="5">
<a class="error-link" href="javascript:history.back()">Go Back</a>
</li>
</ul>
</div>
</div>
</section>
</main>