osp-website
clone your own copy | download snapshot

Snapshots | iceberg

Inside this repository

page.php~
text/x-php

Download raw (695 bytes)

<?php get_header(); ?>

	<div id="content_box">
	
		<div id="left_side">

			<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
			<div class="wide_post">
			<h1><?php the_title(); ?></h1>	
			<div class="entry">		
				<?php the_content('<p>Read the rest of this page &rarr;</p>'); ?>
				<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
			</div>
			</wide>
			<?php endwhile; endif; ?>
			
			</div><!--left_side-->
<div class="sidebar">
		<?php include (TEMPLATEPATH . '/sidebar.php'); ?>
	</div>
<div class="r_sidebar">
		<?php include (TEMPLATEPATH . '/r_sidebar.php'); ?>
	</div>			
	</div><!--left_side-->

<?php get_footer(); ?>