Skip to content
This repository has been archived by the owner on Apr 29, 2018. It is now read-only.

Commit

Permalink
Stubbing out the template files to give just enough content to prepar…
Browse files Browse the repository at this point in the history
…e for testing.
  • Loading branch information
tommcfarlin committed Jul 10, 2012
1 parent ff8b633 commit 5d80377
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
7 changes: 7 additions & 0 deletions footer.php
@@ -0,0 +1,7 @@

<div id="footer">
This is the footer.
</div><!-- /#footer -->

</body>
</html>
14 changes: 14 additions & 0 deletions header.php
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="UTF-8">
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<title><?php wp_title( '' ); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>>

<div id="header">
This is the header.
</div><!-- /#header -->
4 changes: 4 additions & 0 deletions index.php
@@ -1,3 +1,7 @@
<?php get_header(); ?>

<div id="content">
This is the content.
</div><!-- /#content -->

<?php get_footer(); ?>

0 comments on commit 5d80377

Please sign in to comment.