-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
91 lines (82 loc) · 3.26 KB
/
index2.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
<!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>
<div class="front-title"><a href="/dev-stack-2011.html">My Development Stack (2011)</a></div>
<p>
<small>
<abbr class="published" title="2011-08-20T00:00:00">
Sat 20 August 2011
</abbr> |
tags:
<a href="/tag/python.html">python</a>,
<a href="/tag/dev.html">dev</a>,
<a href="/tag/flask.html">flask</a>,
<a href="/tag/javascript.html">javascript</a>,
-- (<a href="/dev-stack-2011.html" rel="bookmark">permalink</a>)
</small>
</p> <p>A friend asked me a few days ago what I was using to develop a project I have been working on in my spare time. This then lead to the question of what tools I used on my Mac to handle the development. So after a little thinking, here was ...</p>
<div class="read-more"><a href="/dev-stack-2011.html">read more...</a></div>
<hr />
<span class="paginator">
<a href="/index.html">«</a>
Page 2 / 2
</span>
</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>