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/article-full-width.php

42 lines
1.2 KiB
PHP
Raw Normal View History

2014-11-12 22:01:48 +01:00
<?php include(dirname(__FILE__) . '/header.php'); ?>
2015-08-17 21:12:54 +02:00
<main class="main grid" role="main">
2014-11-12 22:01:48 +01:00
2015-08-17 21:12:54 +02:00
<section class="col sml-12">
2014-11-12 22:01:48 +01:00
2015-08-17 21:12:54 +02:00
<article class="article" role="article" id="post-<?php echo $plxShow->artId(); ?>">
2014-11-12 22:01:48 +01:00
<header>
<h1>
2015-08-17 21:12:54 +02:00
<?php $plxShow->artTitle(); ?>
2014-11-12 22:01:48 +01:00
</h1>
2015-08-17 21:12:54 +02:00
<small>
<?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?> -
2014-11-12 22:01:48 +01:00
<time datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>"><?php $plxShow->artDate('#num_day #month #num_year(4)'); ?></time> -
2015-08-17 21:12:54 +02:00
<a href="#comments" title="<?php $plxShow->artNbCom(); ?>"><?php $plxShow->artNbCom(); ?></a>
</small>
2014-11-12 22:01:48 +01:00
</header>
<section>
<?php $plxShow->artContent(); ?>
</section>
<footer>
2015-08-17 21:12:54 +02:00
<small>
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?> -
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
</small>
2014-11-12 22:01:48 +01:00
</footer>
</article>
<?php $plxShow->artAuthorInfos('<div class="author-infos">#art_authorinfos</div>'); ?>
<?php include(dirname(__FILE__).'/commentaires.php'); ?>
2015-08-17 21:12:54 +02:00
</section>
2014-11-12 22:01:48 +01:00
2015-08-17 21:12:54 +02:00
</main>
2014-11-12 22:01:48 +01:00
2015-08-17 21:12:54 +02:00
<?php include(dirname(__FILE__).'/footer.php'); ?>