Project

General

Profile

Download (2.28 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
  <script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
10
</head>
11

    
12
<body>
13

    
14
<table border="0" cellpadding="0" cellspacing="0" id="header">
15
  <tr>
16
    <td id="logo">
17
      <?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
18
      <?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
19
      <?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
20
    </td>
21
    <td id="menu">
22
      <?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?><?php } ?>
23
      <?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?><?php } ?>
24
      <?php print $search_box ?>
25
    </td>
26
  </tr>
27
  <tr>
28
    <td colspan="2"><div><?php print $header ?></div></td>
29
  </tr>
30
</table>
31

    
32
<table border="0" cellpadding="0" cellspacing="0" id="content">
33
  <tr>
34
    <?php if ($sidebar_left) { ?><td id="sidebar-left">
35
      <?php print $sidebar_left ?>
36
    </td><?php } ?>
37
    <td valign="top">
38
      <?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
39
      <div id="main">
40
        <!-- removed DT 12 02 08 ?php print $breadcrumb ? -->
41
        <h1 class="title"><?php print $title ?></h1>
42
        <div class="tabs"><?php print $tabs ?></div>
43
        <?php print $help ?>
44
        <?php print $messages ?>
45
        <?php print $content; ?>
46
        <?php print $feed_icons; ?>
47
      </div>
48
    </td>
49
    <?php if ($sidebar_right) { ?><td id="sidebar-right">
50
      <?php print $sidebar_right ?>
51
    </td><?php } ?>
52
  </tr>
53
</table>
54

    
55
<div id="footer">
56
  <?php print $footer_message ?>
57
</div>
58
<?php print $closure ?>
59
</body>
60
</html>
(9-9/12)