This repository has been archived on 2021-03-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
pluxml-colors/themes/Colors/article-full-width.php
2016-01-24 09:22:18 +01:00

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'); ?>