-
Notifications
You must be signed in to change notification settings - Fork 0
/
categories.html
73 lines (66 loc) · 2.43 KB
/
categories.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title> KenIngle.com</title>
<link rel="stylesheet" href="/theme/css/main.css">
<link rel="stylesheet" href="/theme/css/pygment_trac.css">
<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 class="wrapper">
<header>
<div><img src="http://www.gravatar.com/avatar/f4abeb025b3a14c71c4fc44be1191497?s=120&d=http%3A%2F%2Fwww.example.com%2Fdefault.jpg" class="grv-img"/></div>
<div class="title"><a href="/">KenIngle.com </a></div>
<div class="sub-title">Random thoughts about technology, travel and other things I find interesting.</div>
<p>
<div class="view"><a href="/pages/about.html">About</a></div>
<div class="view"><a href="/archives.html">Archives</a></div>
</p>
<!-- Social links -->
<div class="social">
<h4>Follow Me</h4>
<ul>
<li><a href="https://github.com/keningle">Github</a></li>
<li><a href="http://twitter.com/ken_ingle">Twitter</a></li>
<li><a href="http://www.linkedin.com/in/kingle">LinkedIn</a></li>
<li><a href="https://plus.google.com/112319762460398400993/posts">Google+</a></li>
</ul>
</div>
</header>
<section>
<ul>
<li><a href="/category/blog.html">Blog</a></li>
<li><a href="/category/blog.html">blog</a></li>
</ul>
</section>
<footer>
<p><small>© KenIngle.com — Theme based on Sundown by <a href="https://github.com/orderedlist">orderedlist</a></small></p>
</footer>
</div>
<!-- Scale fix -->
<script>
var metas = document.getElementsByTagName('meta');
var i;
if (navigator.userAgent.match(/iPhone/i)) {
for (i=0; i<metas.length; i++) {
if (metas[i].name == "viewport") {
metas[i].content = "width=device-width, minimum-scale=1.0, maximum-scale=1.0";
}
}
document.addEventListener("gesturestart", gestureStart, false);
}
function gestureStart() {
for (i=0; i<metas.length; i++) {
if (metas[i].name == "viewport") {
metas[i].content = "width=device-width, minimum-scale=0.25, maximum-scale=1.6";
}
}
}
</script>
</body>
</html>