-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.tpl.php
103 lines (72 loc) · 3.55 KB
/
page.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<?php $theme_path = drupal_get_path('theme', 'susy2_pf_cyrano'); include ($theme_path.'/includes/inc_header.php'); ?>
<!-- ______________________ CONTENU _______________________ -->
<div class="content-global">
<!-- ______________________ COLONNE GAUCHE _______________________ -->
<?php if ($left): ?>
<div id="left-content">
<?php print $left; ?>
</div>
<?php endif; ?> <!-- /sidebar-left -->
<!--fin du contenu gauche -->
<div class="content-inner" class="inner column center">
<?php if ($breadcrumb || $title ||$content_top ): ?>
<!-- ______________________ CONTENT TOP NODE_______________________ -->
<?php if ($content_top_node): ?>
<div id="content-top-node">
<?php print $content_top_node; ?>
</div> <!-- /#content-top-node -->
<?php endif; ?>
<div class="content-top">
<?php print $breadcrumb; ?>
<?php print $content_top; ?>
</div> <!-- /#content-top -->
<?php endif; ?>
<?php if ($mission || $messages || $help || $tabs): ?>
<div id="content-header">
<?php if ($mission): ?>
<div id="mission"><?php print $mission; ?></div>
<?php endif; ?>
<?php print $messages; ?>
<?php print $help; ?>
<?php if ($tabs): ?>
<div class="tabs"><?php print $tabs; ?></div>
<?php endif; ?>
</div> <!-- /#content-header -->
<?php endif; ?>
<!-- ______________________ CONTENU CENTRAL _______________________ -->
<article class="middle-content page-base">
<?php if ($title): ?>
<h1 class="title"><?php print $title; ?></h1>
<?php endif; ?>
<?php print $content; ?>
<?php print $feed_icons; ?>
</article> <!-- /#content-area -->
<?php if ($content_bottom): ?>
<div id="content-bottom">
<?php print $content_bottom; ?>
</div><!-- /#content-bottom -->
<?php endif; ?>
</div> <!-- /content-inner /content -->
<?php if (!empty($primary_links) or !empty($secondary_links)): ?>
<div id="navigation" class="menu <?php if (!empty($primary_links)) { print "with-main-menu"; } if (!empty($secondary_links)) { print " with-sub-menu"; } ?>">
<?php if (!empty($primary_links)){ print theme('links', $primary_links, array('id' => 'primary', 'class' => 'links main-menu')); } ?>
<?php if (!empty($secondary_links)){ print theme('links', $secondary_links, array('id' => 'secondary', 'class' => 'links sub-menu')); } ?>
</div> <!-- /navigation -->
<?php endif; ?>
<!-- ______________________ COLONNE DROITE _______________________ -->
<?php if ($right): ?>
<!--d�but du contenu droit -->
<div id="right-content">
<?php if ($search_box) : ?>
<div id="recherche">
<?php print $search_box ?>
</div><!-- //div recherche -->
<?php endif; ?>
<?php print $right; ?>
</div>
<?php endif; ?> <!-- /sidebar-right -->
</div> <!-- /content-global -->
<?php
global $theme_path;
include ($theme_path.'/includes/inc_footer.php');
?>