-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchives.php
More file actions
48 lines (46 loc) · 1.45 KB
/
archives.php
File metadata and controls
48 lines (46 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php include(dirname(__FILE__).'/header.php'); ?>
<section>
<div id="content">
<h4>
<?php echo plxDate::formatDate($plxShow->plxMotor->cible, $plxShow->lang('ARCHIVES').' #month #num_year(4)') ?>
</h4>
<!-- on liste les articles correspondant au mois sélectionné -->
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
<div class="post">
<article role="article" id="post-<?php echo $plxShow->artId(); ?>">
<header>
<h2 class="title">
<?php $plxShow->artTitle('link'); ?>
</h2>
<p class="meta">
<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?> -
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?> -
<?php $plxShow->artNbCom(); ?>
</p>
</header>
<div class="entry">
<section>
<?php $plxShow->artChapo(); ?>
</section>
</div>
<footer>
<p class="classement">
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?> -
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?>
</p>
</footer>
</article>
</div>
<?php endwhile; ?>
<div id="pagination">
<?php $plxShow->pagination(); ?>
</div>
<div class="rss">
<?php $plxShow->artFeed('rss',$plxShow->catId()); ?>
</div>
<div style="clear: both;"> </div>
</div>
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
</section>
</div>
<?php include(dirname(__FILE__).'/footer.php'); ?>