Projet

Général

Profil

Paste
Télécharger (1,79 ko) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / themes / adminimal_theme / templates / page.tpl.php @ 87dbc3bf

1
<?php
2
/**
3
* @file
4
* Main page template.
5
*/
6
?>
7

    
8
<div id="branding" class="clearfix">
9

    
10
        <?php print $breadcrumb; ?>
11

    
12
        <?php print render($title_prefix); ?>
13

    
14
        <?php if ($title): ?>
15
                <h1 class="page-title"><?php print $title; ?></h1>
16
        <?php endif; ?>
17

    
18
        <?php print render($title_suffix); ?>
19

    
20
        <?php print render($primary_local_tasks); ?>
21

    
22
</div>
23

    
24
<div id="page">
25
        <?php if ($secondary_local_tasks): ?>
26
                <div class="tabs-secondary clearfix"><ul class="tabs secondary"><?php print render($secondary_local_tasks); ?></ul></div>
27
        <?php endif; ?>
28

    
29
        <div id="content" class="clearfix">
30
                <div class="element-invisible"><a id="main-content"></a></div>
31

    
32
        <?php if ($messages): ?>
33
                <div id="console" class="clearfix"><?php print $messages; ?></div>
34
        <?php endif; ?>
35

    
36
        <?php if ($page['help']): ?>
37
                <div id="help">
38
                        <?php print render($page['help']); ?>
39
                </div>
40
        <?php endif; ?>
41

    
42
        <?php if (isset($page['content_before'])): ?>
43
                <div id="content-before">
44
                        <?php print render($page['content_before']); ?>
45
                </div>
46
        <?php endif; ?>
47

    
48
        <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
49

    
50
  <div id="content-wrapper">
51

    
52
    <?php if (isset($page['sidebar_left'])): ?>
53
      <div id="sidebar-left">
54
        <?php print render($page['sidebar_left']); ?>
55
      </div>
56
    <?php endif; ?>
57

    
58
    <div id="main-content">
59
            <?php print render($page['content']['system_main']); ?>
60
          </div>
61

    
62
    <?php if (isset($page['sidebar_right'])): ?>
63
      <div id="sidebar-right">
64
        <?php print render($page['sidebar_right']); ?>
65
      </div>
66
    <?php endif; ?>
67
        
68
        </div>
69

    
70
        <?php if (isset($page['content_after'])): ?>
71
                <div id="content-after">
72
                        <?php print render($page['content_after']); ?>
73
                </div>
74
        <?php endif; ?>
75

    
76
        </div>
77

    
78
        <div id="footer">
79
                <?php print $feed_icons; ?>
80
        </div>
81

    
82
</div>