| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 5 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
|
| 6 |
|
| 7 |
<head>
|
| 8 |
<title><?php print $head_title; ?></title>
|
| 9 |
<?php print $head; ?>
|
| 10 |
<?php print $styles; ?>
|
| 11 |
<?php print $scripts; ?>
|
| 12 |
<!--[if lte IE 6]>
|
| 13 |
<style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/css/ie6.css";</style>
|
| 14 |
<![endif]-->
|
| 15 |
<!--[if IE 7]>
|
| 16 |
<style type="text/css" media="all">@import "<?php print base_path() . path_to_theme() ?>/css/ie7.css";</style>
|
| 17 |
<![endif]-->
|
| 18 |
|
| 19 |
</head>
|
| 20 |
|
| 21 |
<body class="<?php print $body_classes; ?>">
|
| 22 |
|
| 23 |
<div id="header">
|
| 24 |
|
| 25 |
<?php print $search_box; ?>
|
| 26 |
<?php if ($logo): ?>
|
| 27 |
<a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>">
|
| 28 |
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" />
|
| 29 |
</a>
|
| 30 |
<?php endif; ?>
|
| 31 |
|
| 32 |
<div id="name-and-slogan">
|
| 33 |
|
| 34 |
<?php if ($site_name): ?>
|
| 35 |
<h1 id='site-name'>
|
| 36 |
<a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>">
|
| 37 |
<?php print $site_name; ?>
|
| 38 |
</a>
|
| 39 |
</h1>
|
| 40 |
<?php endif; ?>
|
| 41 |
|
| 42 |
<?php if ($site_slogan): ?>
|
| 43 |
<div id='site-slogan'>
|
| 44 |
<?php print $site_slogan; ?>
|
| 45 |
</div>
|
| 46 |
<?php endif; ?>
|
| 47 |
|
| 48 |
</div> <!-- /name-and-slogan -->
|
| 49 |
|
| 50 |
</div> <!-- /header -->
|
| 51 |
|
| 52 |
<div id="content" class="clear-block">
|
| 53 |
|
| 54 |
<div id="main" class="column main-content">
|
| 55 |
<?php if ($mission): ?><div id="mission"><?php print $mission; ?></div><?php endif; ?>
|
| 56 |
<?php if ($content_top):?><div id="content-top"><?php print $content_top; ?></div><?php endif; ?>
|
| 57 |
<?php if ($title): ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
|
| 58 |
<?php if ($tabs): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
|
| 59 |
<?php print $help; ?>
|
| 60 |
<?php print $messages; ?>
|
| 61 |
<?php print $content; ?>
|
| 62 |
<?php print $feed_icons; ?>
|
| 63 |
<?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom; ?></div><?php endif; ?>
|
| 64 |
|
| 65 |
</div> <!-- /main -->
|
| 66 |
|
| 67 |
<div id="sidebar-left" class="column sidebar">
|
| 68 |
|
| 69 |
<?php if (isset($primary_links)) : ?>
|
| 70 |
<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
|
| 71 |
<?php endif; ?>
|
| 72 |
|
| 73 |
<?php if ($secondary_links): ?>
|
| 74 |
<div id="secondary" class="block">
|
| 75 |
<div class="content">
|
| 76 |
<?php print theme('menu_links', $secondary_links); ?>
|
| 77 |
</div>
|
| 78 |
</div>
|
| 79 |
<?php endif; ?>
|
| 80 |
|
| 81 |
<?php print $sidebar_left; ?>
|
| 82 |
|
| 83 |
</div> <!-- /sidebar-left -->
|
| 84 |
|
| 85 |
</div> <!-- /content -->
|
| 86 |
|
| 87 |
<div id="footer">
|
| 88 |
<div id="corner"></div>
|
| 89 |
<div class="content">
|
| 90 |
<?php print $footer_message; ?>
|
| 91 |
</div>
|
| 92 |
</div> <!-- /footer -->
|
| 93 |
|
| 94 |
<?php print $closure; ?>
|
| 95 |
|
| 96 |
</body>
|
| 97 |
</html>
|