/var/lib/pluxml/themes/defaut/archives.php is in pluxml 5.5-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | <?php include(dirname(__FILE__).'/header.php'); ?>
<main class="main grid" role="main">
<section class="col sml-12 med-8">
<ul class="repertory menu breadcrumb">
<li><a href="<?php $plxShow->racine() ?>"><?php $plxShow->lang('HOME'); ?></a></li>
<li><?php echo plxDate::formatDate($plxShow->plxMotor->cible, $plxShow->lang('ARCHIVES').' #month #num_year(4)') ?></li>
</ul>
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
<article class="article" role="article" id="post-<?php echo $plxShow->artId(); ?>">
<header>
<h1>
<?php $plxShow->artTitle('link'); ?>
</h1>
<small>
<?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(); ?>
</small>
</header>
<section>
<?php $plxShow->artThumbnail(); ?>
<?php $plxShow->artChapo(); ?>
</section>
<footer>
<small>
<?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?> -
<?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
</small>
</footer>
</article>
<?php endwhile; ?>
<nav class="pagination text-center">
<?php $plxShow->pagination(); ?>
</nav>
<span>
<?php $plxShow->artFeed('rss',$plxShow->catId()); ?>
</span>
</section>
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
</main>
<?php include(dirname(__FILE__).'/footer.php'); ?>
|