-
Notifications
You must be signed in to change notification settings - Fork 0
/
archives.php
25 lines (15 loc) · 927 Bytes
/
archives.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php include(dirname(__FILE__).'/header.php'); ?>
<div id="section">
<div id="article">
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
<h2><?php $plxShow->artTitle('link'); ?></h2>
<p class="art-topinfos"><?php $plxShow->lang('WRITTEN_BY') ?> <?php $plxShow->artAuthor() ?> le <?php $plxShow->artDate('#num_day #month #num_year(4)'); ?></p>
<div class="art-chapo"><?php $plxShow->artChapo(); ?></div>
<p class="art-infos"><?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?> - <?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?> - <?php $plxShow->artNbCom(); ?></p>
<?php endwhile; ?>
<p class="feed-arts"><?php $plxShow->artFeed('rss',$plxShow->catId()); ?></p>
<p id="pagination"><?php $plxShow->pagination(); ?></p>
</div>
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
</div>
<?php include(dirname(__FILE__).'/footer.php'); ?>