--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/web/wp-content/themes/IRI-Theme/archive.php Wed Dec 23 17:55:33 2009 +0000
@@ -0,0 +1,49 @@
+<?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 } ?>
+
+ <div class="navigation">
+ <div class="alignleft"><?php next_posts_link('« Précédent') ?></div>
+ <div class="alignright"><?php previous_posts_link('Suivant »') ?></div>
+ </div>
+ <div> </div
+
+ <?php while (have_posts()) : the_post(); ?>
+ <?php getPost(); ?>
+ <?php endwhile; ?>
+
+ <div class="navigation">
+ <div class="alignleft"><?php next_posts_link('« Précédent') ?></div>
+ <div class="alignright"><?php previous_posts_link('Suivant »') ?></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