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/sidebar.php
2016-01-24 09:22:18 +01:00

46 lines
No EOL
1.5 KiB
PHP
Executable file

<?php if(!defined('PLX_ROOT')) exit; ?>
<aside class="bloc-4">
<div class="widget">
<h3><?php $plxShow->lang('LATEST_ARTICLES'); ?></h3>
<ul>
<?php $plxShow->lastArtList('<li><a class="#art_status" href="#art_url" title="#art_title">#art_title</a></li>'); ?>
</ul>
</div>
<div class="widget">
<h3><?php $plxShow->lang('CATEGORIES'); ?></h3>
<ul>
<?php $plxShow->catList('','<li><i class="flaticon-folder5"></i>
<a href="#cat_url" title="#cat_name">#cat_name</a> (#art_nb)</li>'); ?>
</ul>
</div>
<div class="widget">
<!-- liste des Tags -->
<h3><?php $plxShow->lang('TAGS'); ?></h3>
<ul>
<?php $plxShow->tagList('<li><a class="tag" href="#tag_url" title="#tag_name">#tag_name</a></li>', 20); ?>
</ul>
</div>
<div class="cb"></div>
<div class="widget">
<!-- les dernieres commentaires -->
<h3><?php $plxShow->lang('LATEST_COMMENTS'); ?></h3>
<ul>
<?php $plxShow->lastComList('<li class="com"><a href="#com_url"><span>#com_author '.$plxShow->getLang('SAID').' :</span> #com_content(34)</a></li>'); ?>
</ul>
</div>
<div class="widget">
<!-- les archives -->
<h3><?php $plxShow->lang('ARCHIVES'); ?></h3>
<ul>
<?php $plxShow->archList('<li><a class="#archives_status" href="#archives_url" title="#archives_name">#archives_name</a> (#archives_nbart)</li>'); ?>
</ul>
</div>
</aside>