web/wp-content/themes/IRI-Theme/index.php
author hurons@caf4f556-3d62-0410-8435-a86758001935
Mon, 01 Feb 2010 09:53:45 +0000
branchwordpress
changeset 124 5cb854c0ff5a
parent 109 03b0d1493584
permissions -rw-r--r--
clean other things

<?php get_header(); ?>
	<div class="column span-17 colborder first" id="maincontent">
		<div class="content">
			<?php 
			
				//$my_query = new WP_Query('showposts=8');
				//while ($my_query->have_posts()) : $my_query->the_post();
				
				// Don't show featured item
				//if ($post->ID == $featuredID) continue;
				
				while (have_posts()) : the_post();
				
				?>
				
				<?php getPost($post); ?>
					
				<?php endwhile; ?>
	
				<div class="alignleft"><?php next_posts_link('&laquo; Pr&eacute;c&eacute;dent') ?></div>
				<div class="alignright"><?php previous_posts_link('Suivant &raquo;') ?></div>
</div>
</div>
	
<div class="column span-6 last">
<?php include (TEMPLATEPATH . '/sidebar_single.php'); ?>
</div>
<hr></hr>
<?php get_sidebar(); ?>
<?php get_footer(); ?>