Projet

Général

Profil

Paste
Télécharger (2,9 ko) Statistiques
| Branche: | Révision:

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

1
<div id="page">
2
  <div class="topbar-wrapper">
3
    <div class="container">
4
      <div id="topbar" class="clearfix">
5
        <?php print $breadcrumb; ?>
6
        <?php if ($datetime_rfc): ?>
7
          <time datetime="<?php print $datetime_iso; ?>"><?php print $datetime_rfc; ?></time>
8
        <?php endif; ?>
9
      </div>
10
    </div>
11
  </div>
12

    
13
  <div id="header" class="content-header">
14
    <div class="container">
15
      <header<?php print $content_header_attributes; ?>>
16

    
17
        <?php print render($title_prefix); ?>
18
        <?php if ($title): ?>
19
          <h1 id="page-title"><?php print $title; ?></h1>
20
        <?php endif; ?>
21
        <?php print render($title_suffix); ?>
22

    
23
        <?php if ($primary_local_tasks): ?>
24
          <nav id="primary-tasks" class="clearfix<?php print $secondary_local_tasks ? ' with-secondary' : '' ?>" role="navigation">
25
            <ul class="tabs primary"><?php print render($primary_local_tasks); ?></ul>
26
          </nav>
27
        <?php endif; ?>
28

    
29
      </header>
30
    </div>
31
  </div>
32

    
33
  <?php if ($secondary_local_tasks): ?>
34
    <div class="secondary-tasks-wrapper">
35
      <div class="container">
36
        <nav id="secondary-tasks" class="clearfix menu-wrapper" role="navigation">
37
          <ul class="tabs secondary clearfix"><?php print render($secondary_local_tasks); ?></ul>
38
        </nav>
39
      </div>
40
    </div>
41
  <?php endif; ?>
42

    
43
  <div id="columns" class="columns clearfix">
44
    <div class="container">
45
      <div id="content-column" class="content-column" role="main">
46
        <div class="content-inner">
47

    
48
          <?php print render($page['highlighted']); ?>
49
          <?php print $messages; ?>
50
          <?php print render($page['help']); ?>
51

    
52
          <?php if ($action_links): ?>
53
            <nav class="actions-wrapper menu-wrapper clearfix">
54
              <ul class="action-links clearfix">
55
                <?php print render($action_links); ?>
56
              </ul>
57
            </nav>
58
          <?php endif; ?>
59

    
60
          <<?php print $tag; ?> id="main-content">
61

    
62
            <!-- region: Main Content -->
63
            <?php if ($content = render($page['content'])): ?>
64
              <div id="content">
65
                <?php print $content; ?>
66
              </div>
67
            <?php endif; ?>
68

    
69
            <!-- Feed icons (RSS, Atom icons etc -->
70
            <?php print $feed_icons; ?>
71
            
72
          </<?php print $tag; ?>><!-- /end #main-content -->
73

    
74
        </div><!-- /end .content-inner -->
75
      </div><!-- /end #content-column -->
76

    
77
      <!-- regions: Sidebar first and Sidebar second -->
78
      <?php $sidebar_first = render($page['sidebar_first']); print $sidebar_first; ?>
79
      <?php $sidebar_second = render($page['sidebar_second']); print $sidebar_second; ?>
80

    
81
    </div><!-- /end #columns -->
82

    
83
  </div>
84

    
85
  <?php if ($page['footer']): ?>
86
    <footer id="page-footer">
87
      <div class="container">
88
        <?php print render($page['footer']); ?>
89
      </div>
90
    </footer>
91
  <?php endif; ?>
92

    
93
</div>
94