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

« back to all changes in this revision

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