web/wp-content/themes/IRI-Theme/archive.php
author hurons@caf4f556-3d62-0410-8435-a86758001935
Thu, 18 Mar 2010 09:56:33 +0000
changeset 170 8e3a5a6fc63e
parent 136 bde1974c263b
permissions -rw-r--r--
English version just for user loged view New plug in : - xili-language - xili-dictionary - xili-tidy-tags And theme modification And widget modification

<?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(xilimlSam_page2cat_output_Hook)){ xilimlSam_page2cat_output_Hook($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 ><?php _e("Tag : ",'IriTheme'); 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','IriTheme')) ?></div>
			<div class="alignright"><?php previous_posts_link(__('Suivant &raquo;','IriTheme')) ?></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','IriTheme')) ?></div>
			<div class="alignright"><?php previous_posts_link(__('Suivant &raquo;','IriTheme')) ?></div>
		</div>
	<?php else : ?>
		<h2 class="center"><?php _e('Not Found','IriTheme') ?></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(); ?>