-
Notifications
You must be signed in to change notification settings - Fork 2
/
article-full-width.php
45 lines (31 loc) · 1.01 KB
/
article-full-width.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php include(dirname(__FILE__) . '/header.php'); ?>
<section>
<div id="container">
<div class="full-width">
<article role="article" id="post-<?php echo $plxShow->artId(); ?>">
<header>
<h1>
<?php $plxShow->artTitle(''); ?>
</h1>
<p>
<?php $plxShow->lang('WRITTEN_BY') ?> <?php $plxShow->artAuthor(); ?> /
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?> /
<?php $plxShow->artNbCom(); ?>
</p>
</header>
<section>
<?php $plxShow->artContent(); ?>
</section>
<footer>
<p>
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?> /
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?>
</p>
</footer>
</article>
<?php $plxShow->artAuthorInfos('<div class="author-infos">#art_authorinfos</div>'); ?>
<?php include(dirname(__FILE__).'/commentaires.php'); ?>
</div>
</div>
</section>
<?php include(dirname(__FILE__) . '/footer.php'); ?>