-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
119 lines (92 loc) · 4.45 KB
/
index.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Justin Nash | [email protected]</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="keywords" content="Justin Nash, software engineering" />
<meta name="description" content="Justin Nash's links on the web." />
<link rel="stylesheet" href="stylesheets/style_1.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="stylesheets/feeds.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="stylesheets/print.css" type="text/css" media="print">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<style type="text/css" media="screen">
p, table, hr, .box { margin-bottom:25px; }
.box p { margin-bottom:10px; }
</style>
<link href='http://fonts.googleapis.com/css?family=Lato:100,100italic,light,lightitalic,regular,bold&v1' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Josefin+Slab:lightitalic,regular,600italic&v1' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Droid+Sans:regular,bold&v1' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="inner">
<div class="borderTop">
<div class="span-6 colborder info prepend-1">
<p class="prepend-top">
<img id="justinpic" src="images/justin.jpg" alt="Justin Nash" border="0" width="200">
</p>
</div><!-- end div .span-6 -->
<div class="colborderRight">
<div class="span-12 last">
<p class="prepend-top append-0"><a href="/">Justin Nash</a></p>
<p class="prepend-top append-0">I am a systems engineer who enjoys dabbling in software development with my friend and business partner, <a href="http://www.petebroderick.com" target="_blank" >Pete Broderick</a>.</p>
</div>
<div style="clear:both;"></div>
</div>
</div><!-- end div .borderTop -->
<hr>
<h2>
<a href="http://simplybinary.com" class="profile-item" target="_blank">Company</a>
<a href="http://blog.simplybinary.com" class="profile-item" target="_blank">Blog</a>
<a href="https://twitter.com/sbjustinnash" class="profile-item" target="_blank">Twitter</a>
<a href="https://www.facebook.com/simplybinary" class="profile-item" target="_blank">Facebook</a>
<a href="https://github.com/sbjustin" class="profile-item" target="_blank">Github</a>
<a href="/resume.html" class="profile-item last" target="_blank">Resume/Projects</a>
</h2>
<div class="feeds">
<div class="feed span-4" style="float:right;margin-right:0px;">
<h1 style="margin-bottom: 0px;">
<img src="images/tumblr.png" class="logo"><a href="http://blog.simplybinary.com"> blog.simplybinary.com</a>
</h1>
<ul><li id="waiting_tumblr">Waiting on a response from Tumblr...</li><div id="posts_div"></div></ul>
</div>
</div>
<script type="text/javascript">
function tumblr(data) {
var posts = data.response.posts;
for (var i=0; i<posts.length; i++) {
var p = posts[i];
var title = p.title;
if(title){
var date_arr = p.date.split(" ")[0].split("-")
var date_str = date_arr[1] + "/" + date_arr[2] + "/" + date_arr[0]
$("#posts_div").append('<li><a href="'+p.post_url+'">'+title+'</a> <span class="date"><small><i>(' + date_str + '</i></small></span></li>');
}
};
$("#waiting_tumblr").hide();
}
</script>
<script>
$(function(){
$.ajax({
url: 'http://api.tumblr.com/v2/blog/simplybinary.tumblr.com/posts?tag=justin&jsonp=tumblr&limit=8',
data: { api_key: "all8BnWBQruzk0kzqQNXzCH8E4UpMQ1yfADo7C0G8bmIdG9Kbd"},
dataType: "jsonp",
jsonp : "tumblr"
});
})
</script>
</div>
</div><!-- end div .container -->
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18637312-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>