forked from uroboro/Learn-Objective-C-in-24-Days-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
28 lines (24 loc) · 1.09 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
<!DOCTYPE HTML>
<html>
<head>
<title>Learn Objective-C: Page Not Found</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300');
body {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 24px;
text-align: center;
padding: 50px 50px;
font-weight: 100;
}
</style>
</head>
<body>
<p>This link appears to be invalid.</p>
<p>If you clicked on a link to example code, <a id="gh_link"></a> to go to the directory on GitHub,</p>
<p>otherwise go back to the blog <a href="/Learn-Objective-C-in-24-Days-Clone/blog_posts/38">home page</a></p>
<script type="text/javascript">
document.getElementById("gh_link").innerHTML = "<a href=\"https://github.com/ipadkid358/Learn-Objective-C-in-24-Days-Clone/tree/master" + window.location.pathname.substring(35) + "\">click here</a>";
</script>
</body>
</html>