Project

General

Profile

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

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

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