mirror of
https://github.com/YunoHost-Apps/pluxml_ynh.git
synced 2024-09-03 20:16:02 +02:00
45 lines
1.1 KiB
PHP
45 lines
1.1 KiB
PHP
<?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(); ?> -
|
|
<time datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>"><?php $plxShow->artDate('#num_day #month #num_year(4)'); ?></time> -
|
|
<?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'); ?>
|