Top
Home
header.php

<!DOCTYPE html>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php
global $page, $paged;
wp_title( '|', true, 'right' );
bloginfo( 'name' );
$site_description = get_bloginfo( 'description', 'display' );
echo " | $site_description";
?></title>
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/style.css" type="text/css">
<link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/fluid.css" type="text/css">
<link rel="SHORTCUT ICON" href="http://mooseloose.com/moose.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="SHORTCUT ICON" href="http://mooseloose.com/moose.ico"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function($){
$('#Moosewrap').prepend('<div id="menu-icon">Menu</div>');
$("#menu-icon").on("click", function(){
$(".menu").slideToggle();
$(this).toggleClass("active");
});
});
</script>
</head>
<body>

index.php

<?php
get_header(); ?>
<DIV id="container">

<div style="clear:both"></div>
</DIV>
<?php get_footer(); ?>



footer.php

<?php
wp_footer();
?>
</body>
</html>



functions.php

Leave empty for now. make sure there is nothing in this file. Especially test to see if there are SPACES!!!