Projet

Général

Profil

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

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

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
</div>
21

    
22
<div id="navigation">
23

    
24
  <?php if ($primary_local_tasks): ?>
25
    <?php print render($primary_local_tasks); ?>
26
  <?php endif; ?>
27

    
28
  <?php if ($secondary_local_tasks): ?>
29
    <div class="tabs-secondary clearfix"><ul class="tabs secondary"><?php print render($secondary_local_tasks); ?></ul></div>
30
  <?php endif; ?>
31

    
32
</div>
33

    
34
<div id="page">
35

    
36
        <div id="content" class="clearfix">
37
                <div class="element-invisible"><a id="main-content"></a></div>
38

    
39
        <?php if ($messages): ?>
40
                <div id="console" class="clearfix"><?php print $messages; ?></div>
41
        <?php endif; ?>
42

    
43
        <?php if ($page['help']): ?>
44
                <div id="help">
45
                        <?php print render($page['help']); ?>
46
                </div>
47
        <?php endif; ?>
48

    
49
        <?php if (isset($page['content_before'])): ?>
50
                <div id="content-before">
51
                        <?php print render($page['content_before']); ?>
52
                </div>
53
        <?php endif; ?>
54

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

    
57
  <div id="content-wrapper">
58

    
59
    <?php if (isset($page['sidebar_left'])): ?>
60
      <div id="sidebar-left">
61
        <?php print render($page['sidebar_left']); ?>
62
      </div>
63
    <?php endif; ?>
64

    
65
    <div id="main-content">
66
            <?php print render($page['content']); ?>
67
          </div>
68

    
69
    <?php if (isset($page['sidebar_right'])): ?>
70
      <div id="sidebar-right">
71
        <?php print render($page['sidebar_right']); ?>
72
      </div>
73
    <?php endif; ?>
74
        
75
        </div>
76

    
77
        <?php if (isset($page['content_after'])): ?>
78
                <div id="content-after">
79
                        <?php print render($page['content_after']); ?>
80
                </div>
81
        <?php endif; ?>
82

    
83
        </div>
84

    
85
        <div id="footer">
86
                <?php print $feed_icons; ?>
87
        </div>
88

    
89
</div>