Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jferris committed Mar 20, 2012
0 parents commit 9fd1812
Show file tree
Hide file tree
Showing 6 changed files with 101 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.*.swp
tmp
Binary file added background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added content_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Joe Ferris</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link type="text/css" href="screen.css" charset="utf-8" media="all"
rel="Stylesheet" />
<link rel="openid.server"
href="http://www.myopenid.com/server" />
<link rel="openid.delegate"
href="http://joeferris.myopenid.com/" />
</head>
<body>
<div id="page">
<h1>Joe Ferris</h1>
<p>
I am a <a
href="http://www.workingwithrails.com/person/12931-joe-ferris">Ruby
on Rails developer</a> in <a href="http://bostonrb.org">Boston,
MA</a>. I work for a technology consulting firm called <a
href="http://www.thoughtbot.com/">thoughtbot</a>. I am the author of
the <a
href="http://github.com/thoughtbot/factory_girl/tree/master">factory_girl</a>
Ruby Gem, which helps developers build prototype objects in automated
tests. You can find me on <a
href="http://www.twitter.com/joeferris">Twitter</a> or <a
href="http://www.github.com/jferris">Github</a>.
</p>
</div>

<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">
var pageTracker = _gat._getTracker("UA-6116121-1");
pageTracker._trackPageview();
</script>

</body>
</html>
2 changes: 2 additions & 0 deletions robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-Agent: *
Allow: /
54 changes: 54 additions & 0 deletions screen.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
html, body {
margin: 0em;
height: 100%;
}

body {
background-image: url("background.png");
}

body, td, input, select, textarea {
font-size: 75%;
font-family: Arial;
}

a img {
border: none;
}

h1, h2 {
margin: 0em;
}

h1 {
font-size: 3em;
color: #E0E0FF;
padding: 0.4em;
background-color: #4040D0;
text-align: center;
}

p {
font-size: 2.5em;
line-height: 1.5em;
margin: 1.5em;
text-align: justify;
}

#page {
background-image: url("content_background.png");
width: 80em;
min-height: 100%;
overflow: hidden;
margin: 0 auto;
}

a, strong {
text-decoration: none;
font-weight: normal;
color: #0000C0;
}

a:hover {
text-decoration: underline;
}

0 comments on commit 9fd1812

Please sign in to comment.