Projet

Général

Profil

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

root / drupal7 / sites / all / themes / adminimal_theme / templates / page--admin--dashboard.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

    
60
      <?php if (isset($page['content']['dashboard'])): ?>
61
        <div id="dashboard-wrapper">
62
          <?php print render($page['content']['dashboard']); ?>
63
        </div>
64
      <?php endif; ?>
65

    
66
      <?php print render($page['content']['system_main']); ?>
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>