-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add old site for comparison purposes.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>featherless software design</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta name="description" content="Jeff Verkoeyen is a software designer under the alias featherless@."> | ||
<meta name="author" content="Jeff Verkoeyen"> | ||
<link href="/css/bootstrap.css" rel="stylesheet"> | ||
<link href="/css/bootstrap-responsive.css" rel="stylesheet"> | ||
<link href="/css/portfolio.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div id="landing"> | ||
<div class="container-narrow"> | ||
|
||
<div class="jumbotron"> | ||
<h1>featherless<br/>software design</h1> | ||
</div> | ||
|
||
<div class="toc row-fluid"> | ||
<div class="span3"> | ||
<h2><a href="/portfolio">portfolio</a></h2> | ||
</div> | ||
<div class="span3 middle"> | ||
<h2><a href="http://blog.jeffverkoeyen.com/">blog</a></h2> | ||
</div> | ||
<div class="span3"> | ||
<h2><a href="/contact">contact</a></h2> | ||
</div> | ||
<div class="span3"> | ||
<h2><a href="/about">about</a></h2> | ||
</div> | ||
</div> | ||
|
||
</div> <!-- /container-narrow --> | ||
</div> <!-- /page --> | ||
|
||
<script type="text/javascript"> | ||
var _gaq = _gaq || []; | ||
_gaq.push(['_setAccount', 'UA-8961075-1']); | ||
_gaq.push(['_setDomainName', 'jeffverkoeyen.com']); | ||
_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> |