forked from funvill/funvill.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
31 lines (26 loc) · 860 Bytes
/
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
---
layout: page
title: "404: Page not found"
permalink: 404.html
---
<div class="page">
<h1 class="page-title">404: Page not found</h1>
<p class="lead">That page vanished in the night, and probably never existed in the first place. That's our story, and we're sticking to it. <a href="/">Head back home</a> to try something else.</p>
</div>
<script>
$(document).ready(function () {
if(window.location.href.indexOf("/wp/") > -1) {
window.location.replace("https://blog.abluestar.com/alternatives-to-the-vancouver-hackspace");
}
});
if (window.location.href.substr(-1) == '/') {
var sanitized = window.location.href.replace(/\/+$/, '');
location.replace(sanitized);
}
$.get(
"https://data.abluestar.com/log.php",
{url : window.location.href },
function(data) {
}
);
</script>