-
Notifications
You must be signed in to change notification settings - Fork 1
/
page-offre_apprentissage.tpl.php
71 lines (42 loc) · 2.59 KB
/
page-offre_apprentissage.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
<?php $theme_path = drupal_get_path('theme', 'susy2_pf_cyrano'); include ($theme_path.'/includes/inc_header.php'); ?>
<!-- ______________________ LAYOUT PAGE LISTE CONTRAT PRO BTS _______________________ -->
<!-- ______________________ CONTENU _______________________ -->
<!-- ______________________ CONTENT TOP _______________________ -->
<?php if ($breadcrumb ||$content_top ): ?>
<div class="content-top">
<span class="ariane"> <?php print $breadcrumb; ?></span>
<?php print $content_top; ?>
</div> <!-- /#content-top -->
<?php endif; ?>
<div class="content-inner">
<?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 _______________________ -->
<div class="middle-content">
<?php print $content; ?>
<?php print $feed_icons; ?>
</div> <!-- /#content-area -->
</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; ?>
<!-- ______________________ CONTENU BAS _______________________ -->
<?php if ($content_bottom): ?>
<div id="content-bottom">
<?php print $content_bottom; ?>
</div><!-- /#content-bottom -->
<?php endif; ?>
<?php $theme_path = drupal_get_path('theme', 'susy2_pf_cyrano'); include ($theme_path.'/includes/inc_footer.php'); ?>