| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
| 3 |
<head>
|
| 4 |
<title><?php print $head_title; ?></title>
|
| 5 |
<?php print $head; ?>
|
| 6 |
<?php print $styles; ?>
|
| 7 |
<?php print $scripts; ?>
|
| 8 |
</head>
|
| 9 |
|
| 10 |
<?php /* different ids allow for separate theming of the home page */ ?>
|
| 11 |
<body class="<?php print $body_classes; ?>">
|
| 12 |
<div id="header">
|
| 13 |
<?php print $header; ?>
|
| 14 |
<?php if ($logo): ?>
|
| 15 |
<a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>">
|
| 16 |
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" />
|
| 17 |
</a>
|
| 18 |
<?php else: ?>
|
| 19 |
<?php if ($site_name): ?>
|
| 20 |
<h1 id='site-name'>
|
| 21 |
<a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>">
|
| 22 |
<?php print $site_name; ?>
|
| 23 |
</a>
|
| 24 |
</h1>
|
| 25 |
<?php endif; ?>
|
| 26 |
<?php if ($site_slogan): ?>
|
| 27 |
<div id='site-slogan'>
|
| 28 |
<?php print $site_slogan; ?>
|
| 29 |
</div>
|
| 30 |
<?php endif; ?>
|
| 31 |
<?php endif; ?>
|
| 32 |
</div>
|
| 33 |
<div id="topnav">
|
| 34 |
<?php if ($primary_links): ?>
|
| 35 |
<!-- TODO: Format the links correctly -->
|
| 36 |
<?php print theme('links', $primary_links, ''); ?>
|
| 37 |
<?php endif; ?>
|
| 38 |
</div> <!-- /topnav -->
|
| 39 |
<div id="contentarea">
|
| 40 |
<div id="content">
|
| 41 |
<?php if ($breadcrumb): ?><div id="header-region"><?php print $breadcrumb; ?></div><?php endif; ?>
|
| 42 |
<?php if ($mission): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
|
| 43 |
<?php if ($content_top):?><div id="content-top"><?php print $content_top; ?></div><?php endif; ?>
|
| 44 |
<?php if ($title): ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
|
| 45 |
<?php if ($tabs): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
|
| 46 |
<?php print $help; ?>
|
| 47 |
<?php print $messages; ?>
|
| 48 |
<?php print $content; ?>
|
| 49 |
<?php print $feed_icons; ?>
|
| 50 |
<?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom; ?></div><?php endif; ?>
|
| 51 |
</div> <!-- /content -->
|
| 52 |
</div> <!-- /contentarea -->
|
| 53 |
|
| 54 |
<div id="botnav">
|
| 55 |
<?php print theme('links', $primary_links, ' | '); ?>
|
| 56 |
</div>
|
| 57 |
<div id="copyright">
|
| 58 |
<?php print $footer_message; ?>
|
| 59 |
</div>
|
| 60 |
<?php if ($footer):?><div id="footer"><?php print $footer; ?></div><?php endif; ?>
|
| 61 |
<?php print $closure; ?>
|
| 62 |
</body>
|
| 63 |
</html>
|