Don't like ads? PRO users don't see any ads ;-)
Guest

News.php

By: a guest on Feb 3rd, 2011  |  syntax: None  |  size: 0.55 KB  |  hits: 91  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <?php
  2. /**
  3.  * Template Name: News
  4.  * The main template file.
  5.  *
  6.  * @package WordPress
  7.  * @subpackage Starkers
  8.  * @since Starkers 3.0
  9.  */
  10.  
  11.  
  12. get_header(); ?>
  13.  
  14. <div id="content-wrapper">
  15.         <div class="mainNav">
  16.                 <?php do_action('wp_menubar','mainNav'); ?>
  17.         </div>
  18.  
  19. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  20.                                 <?php   the_content();  ?>
  21.  
  22. <?php endwhile;?>
  23. <?php include (TEMPLATEPATH . '/sidebar.php'); ?>      
  24. <div id="prv">
  25. <?php previous_posts_link(); ?> &bull; <?php next_posts_link(); ?>
  26. </div>
  27.  
  28. <?php get_footer(); ?>