-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome.php
More file actions
56 lines (52 loc) · 2.9 KB
/
home.php
File metadata and controls
56 lines (52 loc) · 2.9 KB
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
<?php include(dirname(__FILE__).'/header.php'); ?>
<?php include(dirname(__FILE__).'/sidebar.php'); ?>
<div class="s-12 l-9">
<div class="box">
<!-- HEADER -->
<!-- CAROUSEL -->
<div class="line">
<div id="owl-demo" class="owl-carousel owl-theme margin-bottom">
<div class="item"><img src="<?php $plxShow->template(); ?>/img/slide-1.jpg" alt="<?php $plxShow->pageTitle(); ?> - <?php $plxShow->subTitle(); ?>" title="<?php $plxShow->pageTitle(); ?> - <?php $plxShow->subTitle(); ?>"></div>
<div class="item"><img src="<?php $plxShow->template(); ?>/img/slide-2.jpg" alt="<?php $plxShow->pageTitle(); ?> - <?php $plxShow->subTitle(); ?>" title="<?php $plxShow->pageTitle(); ?> - <?php $plxShow->subTitle(); ?>"></div>
<div class="item"><img src="<?php $plxShow->template(); ?>/img/slide-3.jpg" alt="<?php $plxShow->pageTitle(); ?> - <?php $plxShow->subTitle(); ?>" title="<?php $plxShow->pageTitle(); ?> - <?php $plxShow->subTitle(); ?>"></div>
<div class="item"><img src="<?php $plxShow->template(); ?>/img/slide-4.jpg" alt="<?php $plxShow->pageTitle(); ?> - <?php $plxShow->subTitle(); ?>" title="<?php $plxShow->pageTitle(); ?> - <?php $plxShow->subTitle(); ?>"></div>
</div>
</div>
<!-- ARTICLE -->
<section>
<?php while($plxShow->plxMotor->plxRecord_arts->loop()): ?>
<article class="line">
<div class="margin">
<div class="s-12 l-2 date">
<i class="icon-calendar"></i>
<p>
<span><?php $plxShow->artDate('#num_day</span><br />#month #num_year(4)'); ?>
</p>
</div>
<div class="s-12 l-10">
<header>
<h2><?php $plxShow->artTitle('link'); ?></h2>
<p>
<span>
<i class="icon-user"></i><?php $plxShow->lang('WRITTEN_BY'); ?> <?php $plxShow->artAuthor() ?>
<i class="icon-discussion"></i><?php $plxShow->artNbCom(); ?>
<i class="icon-clock"></i><?php $plxShow->lang('ARTICLES_DATE_UPDATE'); ?> <?php $plxShow->artUpdateDate('#num_day/#num_month/#num_year(4)'); ?>
</span>
<p>
</header>
<section>
<?php $plxShow->artThumbnail('<img class="lazy art_thumbnail full-img" data-original="#img_url" alt="#img_alt" title="#img_title" />'); ?>
<?php $plxShow->artChapo(); ?>
</section>
<footer>
<p><span><i class="icon-newspaper"></i><?php $plxShow->lang('CLASSIFIED_IN') ?> : <?php $plxShow->artCat(); ?> <i class="icon-label"></i><?php $plxShow->lang('TAGS') ?> : <?php $plxShow->artTags(); ?></span></p>
</footer>
<hr>
</div>
</div>
</article>
<?php endwhile; ?>
<div class="right"><?php $plxShow->pagination(); ?></div>
</section>
</div>
<?php include(dirname(__FILE__).'/footer.php'); ?>