1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pluxml_ynh.git synced 2024-09-03 20:16:02 +02:00
pluxml_ynh/sources/themes/defaut/categorie.php
2016-06-26 21:27:12 +02:00

60 lines
1.4 KiB
PHP

<?php include(dirname(__FILE__).'/header.php'); ?>
<section>
<div id="container">
<div class="width-sidebar">
<p class="directory">
<strong><?php $plxShow->catName(); ?></strong>
<?php $plxShow->catDescription(' : #cat_description'); ?>
</p>
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
<article role="article" id="post-<?php echo $plxShow->artId(); ?>">
<header>
<h1>
<?php $plxShow->artTitle('link'); ?>
</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->artChapo(); ?>
</section>
<footer>
<p>
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?> -
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?>
</p>
</footer>
</article>
<?php endwhile; ?>
<div id="pagination">
<?php $plxShow->pagination(); ?>
</div>
<div class="rss">
<?php $plxShow->artFeed('rss',$plxShow->catId()); ?>
</div>
</div>
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
</div>
</section>
<?php include(dirname(__FILE__).'/footer.php'); ?>