GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Hemingway is a template for Wordpress
Homepage: http://warpspire.com/hemingway
Clone URL: git://github.com/kneath/hemingway.git
kneath (author)
Mon Mar 24 00:26:55 -0700 2008
hemingway / page.php
100755 18 lines (13 sloc) 0.529 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php get_header(); ?>
 
  <div id="primary">
  <div class="inside">
 
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <h1><?php the_title(); ?></h1>
        <?php the_content('<p class="serif">' . _('Read the rest of this page') . ' &raquo;</p>'); ?>
  
        <?php link_pages('<p><strong>' . _('Pages') . ':</strong> ', '</p>', 'number'); ?>
   <?php endwhile; endif; ?>
  <?php edit_post_link(_('Edit this entry.'), '<p>', '</p>'); ?>
  </div>
  </div>
 
<?php get_sidebar(); ?>
 
<?php get_footer(); ?>