-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
executable file
·78 lines (71 loc) · 3.64 KB
/
404.html
File metadata and controls
executable file
·78 lines (71 loc) · 3.64 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
title: "hackermode 404"
permalink: 404.html
---
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>404 Mode</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{% if page.meta_description %}{{ page.meta_description }}{% else %}{{ site.meta_description }}{% endif %}">
<link rel="canonical"
href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<!-- Harmony styles -->
<link rel="stylesheet" type="text/css" href="{{ site.baseurl }}/assets/css/main.css">
<script async src="{{ site.baseurl }}/assets/js/modernizr.js"></script>
<!-- IE Fixes -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<header class="main-header">
<div class="wc-container">
<h1><a href="{{ site.baseurl }}/">404 Mode</a></h1>
{% include header-links.html %}
</div>
</header>
<div class="page-content wc-container" style="text-align:center; padding-top:2vh;">
<h4 style="margin-bottom:5vh;" id="german-sorry">Es tut mir leid</h4>
<p id = "personal-message">This page doesn't exist and at the moment, I don't think I have any plans on making it exist. This being said, please feel free to email me about information you need :)</p>
<p style="margin-top:6vh;">
- Abhishek Modi <br>
<a href="mailto:hi@hackermo.de">hi@hackermo.de</a>
</p>
</div>
<script type="text/javascript">
/* To avoid render blocking css */
var cb = function() {
var l = document.createElement('link'); l.rel = 'stylesheet';
l.href = 'http://fonts.googleapis.com/css?family=Ubuntu+Mono&subset=latin';
var h = document.getElementsByTagName('head')[0]; h.parentNode.insertBefore(l, h);
};
var raf = requestAnimationFrame || mozRequestAnimationFrame ||
webkitRequestAnimationFrame || msRequestAnimationFrame;
if (raf) raf(cb);
else window.addEventListener('load', cb);
</script>
<!-- jQuery -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- When no internet load JQuery from local -->
<script>window.jQuery || document.write('<script src="{{ site.baseurl }}/assets/js/jquery.min.js"><\/script>')</script>
<!-- Site js -->
<script src="{{ site.baseurl }}/assets/js/all.js"></script>
<script>
console.log("Hi there hacker. Nice to meet you <3");
if ((location.pathname).indexOf('404') > -1){
var msg = document.getElementById('personal-message');
msg.innerHTML = "You came searching for this... I see but I'm not sure what your game is here. Honestly, what were you expecting to find?";
var sry = document.getElementById('german-sorry');
sry.innerHTML = "wtf m80";
}
</script>
<!-- Google analytics -->
{% include google-analytics.html %}
</body>
</html>