Project

General

Profile

Download (3.6 KB) Statistics
| Branch: | Tag: | Revision:
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
3

    
4
<head>
5
  <title><?php print $head_title; ?></title>
6
  <?php print $head; ?>
7
  <?php print $styles; ?>
8
  <?php print $scripts; ?>
9
</head>
10

    
11
<?php /* different ids allow for separate theming of the home page */ ?>
12
<body class="<?php print $body_classes; ?>">
13
  <div id="page">
14
    <div id="header">
15
      <div id="logo-title">
16
      
17
        <?php print $search_box; ?>      
18
        <?php if ($logo): ?>
19
          <a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>">
20
            <img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" />
21
          </a>
22
        <?php endif; ?>
23
        
24
        <div id="name-and-slogan">
25
        
26
        <?php if ($site_name): ?>
27
          <h1 id='site-name'>
28
            <a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>">
29
              <?php print $site_name; ?>
30
            </a>
31
          </h1>
32
        <?php endif; ?>
33
        
34
        <?php if ($site_slogan): ?>
35
          <div id='site-slogan'>
36
            <?php print $site_slogan; ?>
37
          </div>
38
        <?php endif; ?>
39
        
40
        </div> <!-- /name-and-slogan -->
41
        
42
      </div> <!-- /logo-title -->
43
     
44
      
45
      <div id="navigation" class="menu <?php if ($primary_links) { print "withprimary"; } if ($secondary_links) { print " withsecondary"; } ?> ">
46
          <?php if ($primary_links): ?>
47
            <div id="primary" class="clear-block">
48
              <?php print theme('menu_links', $primary_links); ?>
49
            </div>
50
          <?php endif; ?>
51
          
52
          <?php if ($secondary_links): ?>
53
            <div id="secondary" class="clear-block">
54
              <?php print theme('menu_links', $secondary_links); ?>
55
            </div>
56
          <?php endif; ?>
57
      </div> <!-- /navigation -->
58
      
59
      <?php if ($header || $breadcrumb): ?>
60
        <div id="header-region">
61
          <?php print $breadcrumb; ?>
62
          <?php print $header; ?>
63
        </div>
64
      <?php endif; ?>
65
      
66
    </div> <!-- /header -->
67

    
68
    <div id="container" class="clear-block">
69
                  
70
      <?php if ($sidebar_left): ?>
71
        <div id="sidebar-left" class="column sidebar">
72
          <?php print $sidebar_left; ?>
73
        </div> <!-- /sidebar-left -->
74
      <?php endif; ?>  
75
    
76
      <div id="main" class="column"><div id="squeeze">
77
        <?php if ($mission): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
78
        <?php if ($content_top):?><div id="content-top"><?php print $content_top; ?></div><?php endif; ?>
79
        <?php if ($title): ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
80
        <?php if ($tabs): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
81
        <?php print $help; ?>
82
        <?php print $messages; ?>
83
        <?php print $content; ?>
84
        <?php print $feed_icons; ?>
85
        <?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom; ?></div><?php endif; ?>
86
      </div></div> <!-- /squeeze /main -->
87

    
88
      <?php if ($sidebar_right): ?>
89
        <div id="sidebar-right" class="column sidebar">
90
          <?php print $sidebar_right; ?>
91
        </div> <!-- /sidebar-right -->
92
      <?php endif; ?>
93

    
94
    </div> <!-- /container -->
95

    
96
    <div id="footer-wrapper">
97
      <div id="footer">
98
        <?php print $footer_message; ?>
99
      </div> <!-- /footer -->
100
    </div> <!-- /footer-wrapper -->
101
    
102
    <?php print $closure; ?>
103
    
104
  </div> <!-- /page -->
105

    
106
</body>
107
</html>
(12-12/17)