PluXML : Affichage d'une liste d'articles dans une page statique
<?php
$plxShow = plxShow::getInstance();
//var_dump($plxShow);
include(dirname(__FILE__).'/header.php'); # On insere le header ?>
<!-- primary content -->
<div id="primary-content">
<div class="blocks">
<strong><?php echo plxDate::formatDate($plxShow->plxMotor->cible, $plxShow->lang('ARCHIVES').' #month #num_year(4)') ?></strong>
<?php $plxShow->lastArtList('<li><a class="#art_status" href="#art_url" title="#art_title">#art_title</a></li>'); ?>
<?php # On affiche le fil Atom des articles de cette categorie ?>
<div class="feed_categorie"><?php $plxShow->artFeed('rss',$plxShow->catId()); ?></div>
<?php # On affiche la pagination ?>
<p class="pagination">
<?php $plxShow->pagination(); ?>
</p>
<!-- /page navigation -->
</div>
</div>
<!-- /primary content -->
<?php include(dirname(__FILE__).'/footer.php'); # On insere le footer ?>