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

« back to all changes in this revision

Viewing changes to themes/defaut/tags.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 include(dirname(__FILE__).'/header.php'); ?>
2
2
 
3
 
<section>
4
 
 
5
 
        <div id="container">
6
 
 
7
 
                <div class="width-sidebar">
8
 
 
9
 
                        <p class="directory">
10
 
                                <strong><?php $plxShow->tagName(); ?></strong>
11
 
                        </p>
 
3
        <main class="main grid" role="main">
 
4
 
 
5
                <section class="col sml-12 med-8">
 
6
 
 
7
                        <ul class="repertory menu breadcrumb">
 
8
                                <li><a href="<?php $plxShow->racine() ?>"><?php $plxShow->lang('HOME'); ?></a></li>
 
9
                                <li><?php $plxShow->tagName(); ?></li>  
 
10
                        </ul>
12
11
 
13
12
                        <?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
14
13
 
15
 
                        <article role="article" id="post-<?php echo $plxShow->artId(); ?>">
 
14
                        <article class="article" role="article" id="post-<?php echo $plxShow->artId(); ?>">
16
15
 
17
16
                                <header>
18
17
                                        <h1>
19
18
                                                <?php $plxShow->artTitle('link'); ?>
20
19
                                        </h1>
21
 
                                        <p>
 
20
                                        <small>
22
21
                                                <?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?> -
23
22
                                                <time datetime="<?php $plxShow->artDate('#num_year(4)-#num_month-#num_day'); ?>"><?php $plxShow->artDate('#num_day #month #num_year(4)'); ?></time> -
24
23
                                                <?php $plxShow->artNbCom(); ?>
25
 
                                        </p>
 
24
                                        </small>
26
25
                                </header>
27
26
 
28
27
                                <section>
30
29
                                </section>
31
30
 
32
31
                                <footer>
33
 
                                        <p>
34
 
                                                <?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?> -
35
 
                                                <?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?>
36
 
                                        </p>
 
32
                                        <small>
 
33
                                                <?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat() ?> - 
 
34
                                                <?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags() ?>
 
35
                                        </small>
37
36
                                </footer>
38
37
 
39
38
                        </article>
40
39
 
41
40
                        <?php endwhile; ?>
42
41
 
43
 
                        <div id="pagination">
 
42
                        <nav class="pagination text-center">
44
43
                                <?php $plxShow->pagination(); ?>
45
 
                        </div>
 
44
                        </nav>
46
45
 
47
 
                        <div class="rss">
 
46
                        <span>
48
47
                                <?php $plxShow->tagFeed() ?>
49
 
                        </div>
 
48
                        </span>
50
49
 
51
 
                </div>
 
50
                </section>
52
51
 
53
52
                <?php include(dirname(__FILE__).'/sidebar.php'); ?>
54
53
 
55
 
        </div>
56
 
 
57
 
</section>
 
54
        </main>
58
55
 
59
56
<?php include(dirname(__FILE__).'/footer.php'); ?>