
Untitled
By: a guest on
Sep 28th, 2011 | syntax:
None | size: 1.32 KB | hits: 41 | expires: Never
<?php get_header(); ?>
<div id="container">
<?php if(have_posts()): ?><?php while(have_posts()):the_post(); ?>
<div class="post">
<h1><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1>
<div class="entry">
<?php the_content(); ?>
<?php link_pages('<p><strong>Pages:</strong>','</p>','number'); ?>
<p class="postmetadata">
<?php _e('Filed under:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?>
<?php edit_post_link('Edit', ' | ', ''); ?>
</p>
</div>
<div class="comments-template">
<?php comments_template(); ?>
</div>
</div>
<?php endwhile; ?>
<div class="navigation">
<?php previous_post_link('«%link') ?> <?php next_post_link('%link»') ?>
</div>
<?php else: ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><?php_e('Not Found'); ?></h2>
</div>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>