49 lines
No EOL
1.4 KiB
PHP
Executable file
49 lines
No EOL
1.4 KiB
PHP
Executable file
<?php include(dirname(__FILE__).'/header.php'); ?>
|
|
|
|
<article class="bloc-12">
|
|
|
|
|
|
|
|
<div class="blog">
|
|
|
|
<!-- Titre de l'article -->
|
|
<h2><?php $plxShow->artTitle(); ?></h2>
|
|
|
|
<p class="infos">
|
|
<i class="flaticon-pencil5"></i><?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?> le <?php $plxShow->artDate('#num_day #month #num_year(4)'); ?>
|
|
<span class="right">
|
|
<i class="flaticon-text"></i><?php $plxShow->artNbCom(); ?>
|
|
</span>
|
|
</p>
|
|
|
|
<div class="contenu">
|
|
<!-- Affichage de l'article-->
|
|
<?php $plxShow->artContent(); ?>
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!-- informations de l'article, catégorie et Tags -->
|
|
<p class="infos">
|
|
<i class="flaticon-folder5"></i>Classé dans :
|
|
<?php $plxShow->artCat() ?>
|
|
</p>
|
|
|
|
|
|
<?php $plxShow->artTags('<a class="tag" href="#tag_url" title="#tag_name">#tag_name</a>','') ?>
|
|
|
|
|
|
|
|
|
|
<?php include(dirname(__FILE__).'/commentaires.php'); ?>
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<?php include(dirname(__FILE__).'/footer.php'); ?>
|