-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path404.html
50 lines (44 loc) · 1.15 KB
/
404.html
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
---
permalink: /404.html
---
<script>
function preload() {
var img = new Image();
img.src = 'https://niklakhani.in/assets/images/road.jpg';
}
preload();
</script>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Whoops, page not found!</title>
<meta name="viewport" content="width=device-width">
<!-- Custom Favicons -->
{% include favicon.html %}
<!-- Custom CSS -->
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/404.css">
<!-- Custom Scripts -->
</head>
<body>
<!-- Header -->
<section class="header">
<div class="overlay"></div>
<div class="logo">
<a href="{{ site.url }}">
<div class="logo-inner">
<span>n</span>
</div>
</a>
</div>
<div class="whoops-content">
<h1 class="whoops">Whoops, page not found!</h1>
<p>
The page that you're looking for is not found, go back to <a href="{{ site.url }}">home</a> or <a href="{{ site.url }}/blog/">blog</a>.
</p>
</div>
</section>
<!-- /Header -->
</body>
</html>