~ubuntu-drupal-devs/ubuntu-drupal-theme/6.x

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
// $Id$

/**
 * @file
 * Core layout for every page
 */

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
  <head>
    <title><?php print $head_title ?></title>
    <?php print $head; ?>
    <?php print $styles; ?>
    <?php print $scripts; ?>
    <?php print $iehack; ?>
  </head>
  <body>
    <!-- Banner -->
    <?php print $banner; ?>
    <!-- Layout -->
    <div id="page-top-border"></div>
    <div id="wrapper" style="width: <?php print pagewidth() . widthtype(); ?>;">
      <div id="page-border-left">
        <div id="page-border-right">
          <div id="page-content">
            <div id="bg-top"></div>
            <div id="topNav">
              <div id="nav-content">
                <div id="nav" class="menu">
                  <?php print $topmenu; ?>
                  <div style="clear: both;"></div>
                </div>
                <?php print $search_box; ?>
                <?php print $logo; ?>
                <div class="clear">
                  <?php print $spacergif; ?>
                </div>
              </div>
              <!-- /#nav-content -->
            </div>
            <!-- /#topNav -->
            <div id="header">
              <?php print $site_name; ?>
              <?php print $site_slogan; ?>
              <?php print $header; ?>
            </div>
            <!-- /#header -->
            <div id="container">
              <?php if ($left) { ?>
                <div id="column-left">
                  <?php print $left; ?>
                </div>
              <?php } ?>
              <?php if ($right) { ?>
                <div id="column-right">
                  <?php print $right; ?>
                </div>
              <?php } ?>
              <div id="column-center">
                <?php print $breadcrumb; ?>
                <?php print $center; ?>
              </div>
            </div>
            <!-- /#container -->
            <div id="footer" class="clear">
              <?php print $footer; ?>
              <div class="wrapper">
                <?php print $rulebar; ?>
                <div class="paragraph">
                  <div id="leftfooter">
                    <?php print $leftfooter; ?>
                  </div>
                  <div id="rightfooter">
                    <?php print $rightfooter; ?>
                  </div>
                </div>
              </div>
            </div>
            <!-- /#footer -->
          </div>
          <!-- /#page-content -->
          <div id="bg-bottom"></div>
          <div id="bg-right">&#160;</div>
          <div id="bottom-right">&#160;</div>
        </div>
        <!-- /#page-border-right -->
        <div id="bg-left">&#160;</div>
        <div id="bottom-left">&#160;</div>
      </div>
      <!-- /#page-border-left -->
    </div>
    <!-- /#wrapper -->
    <!-- /layout -->
    <?php print $closure; ?>
  </body>
</html>