
News.php
By: a guest on
Feb 3rd, 2011 | syntax:
None | size: 0.55 KB | hits: 91 | expires: Never
<?php
/**
* Template Name: News
* The main template file.
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 3.0
*/
get_header(); ?>
<div id="content-wrapper">
<div class="mainNav">
<?php do_action('wp_menubar','mainNav'); ?>
</div>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile;?>
<?php include (TEMPLATEPATH . '/sidebar.php'); ?>
<div id="prv">
<?php previous_posts_link(); ?> • <?php next_posts_link(); ?>
</div>
<?php get_footer(); ?>