initial development

This commit is contained in:
Kenneth Reitz
2010-03-29 04:32:28 -04:00
parent 79febd8e1a
commit 84e2cd3beb
15 changed files with 493 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
add_action('wp_head', 'page_head');
add_action('wp_footer', 'page_foot');
get_header();
function page_head(){?><?php }
function page_foot(){?><?php }?>
<div class="contentBody">
<article>
<h1 class="contentTitle">404&#8212; File Not Found</h1>
<div class="content">
<h2>Oops, Not Found!</h2>
<p>Sorry, we were unable to find the page you were looking for. </p>
</div>
</article>
</div>
<?php get_footer(); ?>