web/wp-content/themes/IRI-Theme/archive.php
changeset 136 bde1974c263b
child 170 8e3a5a6fc63e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/themes/IRI-Theme/archive.php	Wed Feb 03 15:37:20 2010 +0000
@@ -0,0 +1,56 @@
+<?php get_header(); ?>
+	<div class="column span-17 colborder first" id="maincontent">
+		<div class="content">
+		
+		<?php if (have_posts()) : ?>
+		 <?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?>
+	
+	<?php /* If this is a category archive */ if (is_category()) { ?>
+	
+		<?php if( function_exists(page2cat_output)){ page2cat_output($cat);}  ?>  
+		
+		  <?php /* If this is a daily archive */ } elseif (is_day()) { ?>
+			<h2 class="pagetitle">Archive for <?php the_time('F jS, Y'); ?></h2>
+		 <?php /* If this is a monthly archive */ } elseif (is_month()) { ?>
+			<h2 class="pagetitle">Archive for <?php the_time('F, Y'); ?></h2>
+			<?php /* If this is a yearly archive */ } elseif (is_year()) { ?>
+			<h2 class="pagetitle">Archive for <?php the_time('Y'); ?></h2>
+		  <?php /* If this is an author archive */ } elseif (is_author()) { ?>
+			<h2 class="pagetitle">Author Archive</h2>
+			<?php /* If this is a paged archive */ } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) { ?>
+			<h2 class="pagetitle">Blog Archives</h2>
+	<?php } ?>
+	
+	<?php /* If this is a tag archive */ if (is_tag()) { ?>
+		<div id="p2c-header">
+		<h2 >Mot-clef : <?php single_tag_title(); ?></h2>
+		</div>
+		<?php echo(tag_description()); ?>
+	<?php } ?>	
+	
+		<div class="navigation">
+			<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>&nbsp;</div
+		
+		<?php while (have_posts()) : the_post(); ?>
+			<?php getPost(); ?>
+		<?php endwhile; ?>
+		
+		<div class="navigation">
+			<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>
+	<?php else : ?>
+		<h2 class="center">Not Found</h2>
+		<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+	<?php endif; ?>
+	</div>
+</div>
+<div class="column span-5 last">
+<?php include (TEMPLATEPATH . '/sidebar_single.php'); ?>
+</div>
+<hr></hr>
+<?php get_sidebar(); ?>
+<?php get_footer(); ?>
\ No newline at end of file