<?php
/*
Template Name: Page-Hours
*/


get_header(); ?>

    <div id="content" class="narrowcolumn">

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        <div class="post">
        <h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
            <div class="entrytext">
                <?php the_content('<p class="serif">Read the rest of this page &raquo;</p>'); ?>
                
                <?php display_month_totals(); ?>
    
                <?php link_pages('<p><strong>Pages:</strong> ''</p>''number'); ?>
    
            </div>
        </div>
      <?php endwhile; endif; ?>
    
    </div>

<?php get_sidebar(); ?>

<?php get_footer(); ?>