Current File : /home/karenpetzb/application/modules/default/views/scripts/pagination.phtml
<?php if ($this->pageCount): ?>
<table border="0" cellspacing="0" cellpadding="0" width="100%" style="margin-top:15px;">
	<tr>
		<td width="200" style="text-align:right;">
			<span class="footer_menus" >
				<!-- Previous page link --> 
				<?php if (isset($this->previous)) { ?> 
				  <a href="<?php echo $this->url(array('page' => $this->previous)); ?>">&lt; <?php echo "Pr�c�dent"; ?></a> 
				<?php } ?> 
			</span>								
		</td>
		<td style="text-align:center;">
			<span class="link2">
				<!-- Numbered page links -->
				<?php foreach ($this->pagesInRange as $page) { ?> 
				  <?php if ($page != $this->current) { ?>
				    <a href="<?php echo $this->url(array('page' => $page)); ?>"><?php echo $page; ?></a> 
				  <?php  } else { ?>
				    <span ><?php echo $page; ?></span>
				  <?php } 
				   if ($this->last != $page) { echo '|';} 
				    } ?>
			</span>								
		</td>
		<td width="200">
			<span class="footer_menus">
				<!-- Next page link --> 
				<?php if (isset($this->next)) { ?> 
				  <a href="<?php echo $this->url(array('page' => $this->next)); ?>"><?php echo "Suivant" ?> &gt;</a>
				<?php } ?> 
			</span>								
		</td>
	</tr>
</table>
<?php endif; ?>