-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-front-verticalD.tpl.php
59 lines (39 loc) · 1.63 KB
/
page-front-verticalD.tpl.php
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
57
58
59
<?php
global $theme_path;
include ($theme_path.'/includes/inc_header.php');
?>
<!-- ______________________ LAYOUT HOMEPAGE VERTICAL D_______________________ -->
<!-- ______________________ CONTENU _______________________ -->
<?php if ($content_top): ?>
<div class="content-top">
<?php print $content_top; ?>
</div> <!-- /content-top -->
<?php endif; ?>
<!-- ______________________ PARTIE GAUCHE _______________________ -->
<div class="HPGauche">
<?php if ($PartieGauche1): ?>
<div class="HPGauche1"><?php print $PartieGauche1; ?></div>
<?php endif; ?>
<?php if ($PartieGauche2): ?>
<div class="HPGauche2"><?php print $PartieGauche2; ?></div>
<?php endif; ?>
<?php if ($PartieGauche3): ?>
<div class="HPGauche3"><?php print $PartieGauche3; ?></div>
<?php endif; ?>
</div>
<!--______________________ ZONE DIAPO DROITE_______________________ -->
<?php if ($DiapoDroiteHP): ?>
<div class="HPDiapoVerticalDroite"><?php print $DiapoDroiteHP; ?></div>
<?php endif; ?>
<!-- ______________________ FIN LAYOUT PAGE _______________________ -->
<!-- ______________________ CONTENU BAS _______________________ -->
<?php if ($content_bottom_home): ?>
<div class="content-bottom-home">
<?php print $content_bottom_home; ?>
<?php //print $feed_icons; ?>
<?php endif; ?>
</div><!-- /#content-bottom -->
<?php
global $theme_path;
include ($theme_path.'/includes/inc_footer.php');
?>