-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharticle-full-width.php
More file actions
41 lines (40 loc) · 1.21 KB
/
article-full-width.php
File metadata and controls
41 lines (40 loc) · 1.21 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
<?php include(dirname(__FILE__).'/header.php'); ?>
<section>
<div id="content1col">
<div class="post">
<article role="article" id="post-<?php echo $plxShow->artId(); ?>">
<header>
<h1 class="title">
<?php $plxShow->artTitle(''); ?>
</h1>
<p class="meta">
<?php $plxShow->lang('WRITTEN_BY') ?> <?php $plxShow->artAuthor(); ?> -
<?php $plxShow->artDate('#num_day #month #num_year(4)'); ?> -
<?php $plxShow->artNbCom(); ?>
</p>
<!--le chapeau de l'article-->
<div class="entry">
<div class="chapo">
<?php $plxShow->artChapo(false,false); ?>
</div>
</div>
</header>
<section>
<?php $plxShow->artContent(false); ?>
</section>
<footer>
<p class="classement">
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?> -
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?>
</p>
</footer>
</article>
<p>
<?php $plxShow->artAuthorInfos('<div class="author-infos">#art_authorinfos</div>'); ?>
</p>
<?php include(dirname(__FILE__).'/commentaires.php'); ?>
</div>
</div>
</section>
</div>
<?php include(dirname(__FILE__).'/footer.php'); ?>