~ubuntu-branches/ubuntu/wily/pluxml/wily

« back to all changes in this revision

Viewing changes to themes/defaut/sidebar.php

  • Committer: Package Import Robot
  • Author(s): Tanguy Ortolo
  • Date: 2015-07-22 14:22:20 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20150722142220-m5tzuyfq6klb44vs
Tags: 5.4-1
* New upstream release.
* debian/dirs: update to new layout (data/images/ replaced by data/medias).
* debian/postinst:
   + migrate images from data/images/ to data/medias/.
   + update main configuration file (version has changed, and a parameter
     was added).
   + use `command -v` instead of `test` to check for lighty-enable-mod
     existence, to avoid using a fully qualified path.
* debian/postrm:
   + use `command -v` instead of `test` to check for lighty-disable-mod, ucf
     and ucfr existence, to avoid using a fully qualified path.
* debian/rules: remove some JavaScript minimizing rules (that file is no
  longer part of PluXml).
* debian/control:
   + no longer depend on slimit (no more JavaScript minimizing).
   + use a line per build dependency and order them alphabetically.
   + update Standards-Version to 3.9.6 (no change needed).
* debian/copyright: remove everything about respond.js which is no longer
  part of PluXml.
* debian/links: update to new layout (data/images replaced by data/medias).
* debian/NEWS: added, to document the migration to 5.4 layout.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php if(!defined('PLX_ROOT')) exit; ?>
2
2
 
3
 
        <aside role="complementary">
 
3
        <aside class="aside col sml-12 med-4" role="complementary">
4
4
 
5
5
                <h3>
6
6
                        <?php $plxShow->lang('CATEGORIES'); ?>
7
7
                </h3>
8
8
 
9
 
                <ul>
 
9
                <ul class="cat-list unstyled-list">
10
10
                        <?php $plxShow->catList('','<li id="#cat_id"><a class="#cat_status" href="#cat_url" title="#cat_name">#cat_name</a> (#art_nb)</li>'); ?>
11
11
                </ul>
12
12
 
14
14
                        <?php $plxShow->lang('LATEST_ARTICLES'); ?>
15
15
                </h3>
16
16
 
17
 
                <ul>
 
17
                <ul class="lastart-list unstyled-list">
18
18
                        <?php $plxShow->lastArtList('<li><a class="#art_status" href="#art_url" title="#art_title">#art_title</a></li>'); ?>
19
19
                </ul>
20
20
 
22
22
                        <?php $plxShow->lang('TAGS'); ?>
23
23
                </h3>
24
24
 
25
 
                <ul>
 
25
                <ul class="tag-list">
26
26
                        <?php $plxShow->tagList('<li class="tag #tag_size"><a class="#tag_status" href="#tag_url" title="#tag_name">#tag_name</a></li>', 20); ?>
27
27
                </ul>
28
28
 
30
30
                        <?php $plxShow->lang('LATEST_COMMENTS'); ?>
31
31
                </h3>
32
32
 
33
 
                <ul>
 
33
                <ul class="lastcom-list unstyled-list">
34
34
                        <?php $plxShow->lastComList('<li><a href="#com_url">#com_author '.$plxShow->getLang('SAID').' : #com_content(34)</a></li>'); ?>
35
35
                </ul>
36
36
 
38
38
                        <?php $plxShow->lang('ARCHIVES'); ?>
39
39
                </h3>
40
40
 
41
 
                <ul>
 
41
                <ul class="arch-list unstyled-list">
42
42
                        <?php $plxShow->archList('<li id="#archives_id"><a class="#archives_status" href="#archives_url" title="#archives_name">#archives_name</a> (#archives_nbart)</li>'); ?>
43
43
                </ul>
44
44
 
45
 
                <p class="rss"><a href="<?php $plxShow->urlRewrite('feed.php?rss') ?>" title="<?php $plxShow->lang('ARTICLES_RSS_FEEDS'); ?>">
46
 
                        <?php $plxShow->lang('ARTICLES'); ?></a>
47
 
                </p>
48
 
                <p class="rss"><a href="<?php $plxShow->urlRewrite('feed.php?rss/commentaires'); ?>" title="<?php $plxShow->lang('COMMENTS_RSS_FEEDS') ?>">
49
 
                        <?php $plxShow->lang('COMMENTS'); ?></a>
50
 
                </p>
 
45
                <h3>
 
46
                        RSS
 
47
                </h3>
 
48
                        <ul class="rss-list unstyled-list">
 
49
                                <li><a href="<?php $plxShow->urlRewrite('feed.php?rss') ?>" title="<?php $plxShow->lang('ARTICLES_RSS_FEEDS'); ?>"><?php $plxShow->lang('ARTICLES'); ?></a></li>
 
50
                                <li><a href="<?php $plxShow->urlRewrite('feed.php?rss/commentaires'); ?>" title="<?php $plxShow->lang('COMMENTS_RSS_FEEDS') ?>"><?php $plxShow->lang('COMMENTS'); ?></a></li>
 
51
                        </ul>
51
52
 
52
53
        </aside>