-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
134 lines (110 loc) · 6.06 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>Mycow's World</title>
<link href='https://fonts.googleapis.com/css?family=Arvo:400,700,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="/assets/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="/assets/css/blog.css">
<script src="/assets/js/scale.fix.js"></script>
<script src="/assets/js/jquery-3.2.0.min.js"></script>
<script type="text/javascript" id="dsq-count-scr" async src="http://mycowsworld.disqus.com/count.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="mobile-menu">
<div id="menu-container">
<h1 class="header"><a class="header" href="http://www.mycowsworld.com">Mycow's World</a></h1>
<!-- social icons -->
<div id="mobile-social-buttons">
<a class="header social-links fa-hover" href="http://www.github.com/moduli" target="_blank"><i class="fa fa-github fa-3x fa-hover" aria-hidden="true"></i></a>
<a class="header social-links fa-hover" href="http://www.linkedin.com/in/moduli" target="_blank"><i class="fa fa-linkedin-square fa-3x fa-hover" aria-hidden="true"></i></a>
<a class="header social-links fa-hover" href="mailto:[email protected]"><i class="fa fa-envelope-square fa-3x fa-hover" aria-hidden="true"></i></a>
</div>
<button class="hamburger">☰</button>
</div>
<div class="menu">
<ul>
<a class="menu-item" href="http://www.mycowsworld.com"><li>Blog</li></a>
<a class="menu-item" href="http://www.mycowsworld.com/projects"><li>Projects</li></a>
<a class="menu-item" href="http://www.mycowsworld.com/about"><li>About</li></a>
<a class="menu-item" href="http://www.mycowsworld.com/archive"><li>Archive</li></a>
</ul>
</div>
</div>
<div class="wrapper">
<!-- HEADER -->
<header>
<h1 class="header"><a class="header" href="http://www.mycowsworld.com">Mycow's World</a></h1>
<p class="header">Hi, I'm Michael Li. Welcome to my world.
</p>
<!-- site links -->
<div id="site-links">
<ul>
<li><a class="site-links" href="http://www.mycowsworld.com">Blog</a></li>
<li><a class="site-links" href="http://www.mycowsworld.com/projects">Projects</a></li>
<li><a class="site-links" href="http://www.mycowsworld.com/about">About</a></li>
<li><a class="site-links" href="http://www.mycowsworld.com/archive">Archive</a></li>
</ul>
</div>
<!-- social icons -->
<div>
<a class="social-links fa-hover" href="http://www.github.com/moduli" target="_blank"><i class="fa fa-github fa-3x fa-hover" aria-hidden="true"></i></a>
<a class="social-links fa-hover" href="http://www.linkedin.com/in/moduli" target="_blank"><i class="fa fa-linkedin-square fa-3x fa-hover" aria-hidden="true"></i></a>
<a class="social-links fa-hover" href="mailto:[email protected]"><i class="fa fa-envelope-square fa-3x fa-hover" aria-hidden="true"></i></a>
</div>
</header>
<!-- SECTION -->
<section>
<article class="post">
<h1 class="post-title" itemprop="name headline"></h1>
<div class="post-content">
<h2 id="uh-oh">uh oh!!</h2>
<p>Looks like the page you’re looking for doesn’t exist. Just go <a href="/">home</a> and try again!</p>
</div>
</article>
</section>
<!-- FOOTER -->
<footer>
<!-- <p><small>Hosted on <a href="https://pages.github.com" target="_blank">GitHub Pages</a> using the <a href="https://github.com/pages-themes/dinky" target="_blank">Dinky</a> theme</small></p>-->
<!--<p class="rss-subscribe">Subscribe via <a href="/feed.xml">RSS</a></p>-->
</footer>
</div>
<script type="text/javascript">
// -----------------
// Mobile Menu
// -----------------
$( ".menu" ).hide();
$( ".hamburger" ).click(function() {
$( ".menu" ).slideToggle( "slow", function() {
});
});
// -----------------
// Remove :hover from CSS on touch devices
// http://stackoverflow.com/questions/23885255/how-to-remove-ignore-hover-css-style-on-touch-devices
// -----------------
var touch = 'ontouchstart' in document.documentElement
|| navigator.maxTouchPoints > 0
|| navigator.msMaxTouchPoints > 0;
if (touch) { // remove all :hover stylesheets
try { // prevent exception on browsers not supporting DOM styleSheets properly
for (var si in document.styleSheets) {
var styleSheet = document.styleSheets[si];
if (!styleSheet.rules) continue;
for (var ri = styleSheet.rules.length - 1; ri >= 0; ri--) {
if (!styleSheet.rules[ri].selectorText) continue;
if (styleSheet.rules[ri].selectorText.match(':hover')) {
styleSheet.deleteRule(ri);
}
}
}
} catch (ex) {}
}
</script>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
</body>
</html>