-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (71 loc) · 3.14 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<link href='http://fonts.googleapis.com/css?family=Droid+Serif|Droid+Sans:400,700' rel='stylesheet' type='text/css'>
<title></title>
<meta name="author" content="Mark Bahnman" />
<link href="/css/bootstrap.min.css" rel="stylesheet"></link>
<link href="/css/custom.css" rel="stylesheet"></link>
<link href="/css/bootstrap-responsive.min.css" rel="stylesheet"></link>
<link href="/css/prism.css" rel="stylesheet" type="text/css"></link>
<link href="/css/hint.min.css" rel="stylesheet" type="text/css"></link>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-38573932-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>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="/">Mark Bahnman</a>
<div class="nav-collapse collapse">
<ul class="nav pull-right">
<li><a href="mailto:[email protected]">E-mail</a></li>
<li><a href="http://hubski.com/at?id=forwardslash">Hubski</a></li>
<li><a href="https://github.com/markbahnman">Github</a></li>
<li><a href="https://twitter.com/markbahnman">Twitter</a></li>
</ul>
<p class="navbar-text navbar-title pull-left">A Developers Blog</p>
</div><!--/.nav-collapse -->
</div><!--/.container -->
</div><!--/.navbar-inner -->
</div><!--/.navbar-fixed-top -->
<div class="container">
<a href="/2013/02/16/javascript-jquery-and-modules.html">
<div class="post-unit">
<p class="date pull-right">16 Feb 2013</p>
<h2 class="title">Javascript, jQuery, and Modules</h2>
<h3 class="subtitle">Refactoring the Hubski Enhancement Suite userscript</h3>
</div><!--/post-unit-->
</a>
</div><!--/.container-->
<div class="container">
<div class="footer">
<a href="https://github.com/markbahnman/markbahnman.github.com">managed by github</a>
¤
<a href="http://github.com/mojombo/jekyll">generated by jekyll</a>
¤
<a href="http://creativecommons.org/licenses/by/3.0/deed.en_CA">licensed by creative commons</a>
¤
<a href="http://github.com">served by github</a>
</div>
</div>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/prism.js"></script>
</body>
</html>