-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (113 loc) · 4.3 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
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Jeff Sawatzky's Projects</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Jeff Sawatzky's Projects">
<meta name="author" content="Jeff Sawatzky">
<!-- Le styles -->
<link href="./css/bootstrap.min.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 60px;
padding-bottom: 40px;
}
</style>
<link href="./css/bootstrap-responsive.min.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="./js/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<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="#">Jeff Sawatzky's Projects</a>
<div class="nav-collapse">
<ul class="nav">
<li><a href="http://niltz0.wordpress.com/">Blog</a></li>
<li><a href="http://twitter.com/niltz0">Follow</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="hero-unit">
<h1>Hello, there!</h1>
<p>My name is Jeff Sawatzky and this is my personal project page on GitHub. As I create things I will put them up here for the world to see!</p>
<p>
<a href="https://github.com/jeffsawatzky" class="btn btn-primary btn-large">View my GitHub profile »</a>
</p>
<p>
<a href="http://ca.linkedin.com/in/jeffsawatzky">
<img src="http://www.linkedin.com/img/webpromo/btn_viewmy_160x33.png" width="160" height="33" border="0" alt="View Jeff Sawatzky's profile on LinkedIn">
</a>
</p>
</div>
<div class="row">
<div class="span3">
<h2>MyTrax</h2>
<p>An iPhone/iPad app to track where you've been</p>
<p><a class="btn" href="projects/mytrax.html">View details »</a></p>
</div>
<div class="span3">
<h2>Pershop</h2>
<p>An iPhone app to manage your personal shopper client list</p>
<p><a class="btn" href="projects/pershop.html">View details »</a></p>
</div>
<div class="span3">
<h2>MINDcode</h2>
<p>An IDE to write/compile/upload NXT programs to your LEGO Mindstorms NXT brick using NXC (Not eXactly C)</p>
<p><a class="btn" href="http://jeffsawatzky.github.com/MINDcode/">View details »</a></p>
</div>
<div class="span3">
<h2>mongodb-maven-plugin</h2>
<p>A maven plugin to automate the creation, population, and updating of mongo databases</p>
<p><a class="btn" href="http://jeffsawatzky.github.com/mongodb-maven-plugin/">View details »</a></p>
</div>
</div>
<footer>
<p>maintained by <a href="https://github.com/jeffsawatzky">Jeff Sawatzky</a></p>
</footer>
</div>
<script src="./js/jquery-1.7.1.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<!-- Google Analytics -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-37144494-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
<!-- UserVoice JavaScript SDK (only needed once on a page) -->
<script>(function(){var uv=document.createElement('script');uv.type='text/javascript';uv.async=true;uv.src='//widget.uservoice.com/3zOLl5S5rVd88DyDpka6Q.js';var s=document.getElementsByTagName('script')[0];s.parentNode.insertBefore(uv,s)})()</script>
<!-- A tab to launch the Classic Widget -->
<script>
UserVoice = window.UserVoice || [];
UserVoice.push(['showTab', 'classic_widget', {
mode: 'full',
primary_color: '#cc6d00',
link_color: '#007dbf',
default_mode: 'support',
forum_id: 197577,
tab_label: 'Feedback & Support',
tab_color: '#cc6d00',
tab_position: 'middle-right',
tab_inverted: false
}]);
</script>
</body>
</html>