| 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 |
|
| 9 |
<!--[if lt IE 8]>
|
| 10 |
<link rel="stylesheet" type="text/css" media="all" href="<?php print $base_path . $directory .'/fix-ie.css'; ?>" />
|
| 11 |
<![endif]-->
|
| 12 |
<link rel="stylesheet" type="text/css" media="print" href="<?php print $base_path . $directory .'/print.css' ?>" />
|
| 13 |
|
| 14 |
<?php print $scripts ?>
|
| 15 |
</head>
|
| 16 |
|
| 17 |
<body style="min-width: 0; max-width: 10000px;">
|
| 18 |
|
| 19 |
<div id="top-header" class="clear-block">
|
| 20 |
<?php if ($site_slogan) : ?>
|
| 21 |
<div id="site-slogan"><?php print $site_slogan ?></div>
|
| 22 |
<?php endif;?>
|
| 23 |
<?php print $search_box ?>
|
| 24 |
</div>
|
| 25 |
|
| 26 |
<div id="header" class="clear-block">
|
| 27 |
<?php if ($logo) : ?>
|
| 28 |
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img id="logo" src="<?php print $logo ?>" alt="Logo" /></a>
|
| 29 |
<?php endif; ?>
|
| 30 |
|
| 31 |
<?php if ($site_name) : ?>
|
| 32 |
<h1 id="site-name"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
|
| 33 |
<?php endif; ?>
|
| 34 |
</div>
|
| 35 |
|
| 36 |
<?php if (count($primary_links)) : ?>
|
| 37 |
<div id="top-nav" class="clear-block">
|
| 38 |
<?php print theme('links', $primary_links, array('id' => 'primary')) ?>
|
| 39 |
</div>
|
| 40 |
<?php endif; ?>
|
| 41 |
|
| 42 |
<?php if (count($secondary_links)) : ?>
|
| 43 |
<div id="top-nav2" class="clear-block">
|
| 44 |
<?php print theme('links', $secondary_links, array('id' => 'secondary')) ?>
|
| 45 |
</div>
|
| 46 |
<?php endif; ?>
|
| 47 |
|
| 48 |
<?php if ($header): ?>
|
| 49 |
<div id="header-block" class="clear-block"><?php print $header ?></div>
|
| 50 |
<?php endif; ?>
|
| 51 |
|
| 52 |
<div id="content-<?php print $layout ?>">
|
| 53 |
|
| 54 |
<div id="main" class="column">
|
| 55 |
|
| 56 |
<?php if ($content_top): ?>
|
| 57 |
<div id="content-top" class="clear-block"><?php print $content_top ?></div>
|
| 58 |
<?php endif; ?>
|
| 59 |
|
| 60 |
<?php if ($mission): ?>
|
| 61 |
<div id="mission"><?php print $mission ?></div>
|
| 62 |
<?php endif; ?>
|
| 63 |
|
| 64 |
<?php print $breadcrumb ?>
|
| 65 |
|
| 66 |
<?php if ($title): ?>
|
| 67 |
<h2 class="title<?php print $node ? ' nodetitle' : ''; print $tabs ? ' withtabs' : ''; ?>"><?php print $title ?></h2>
|
| 68 |
<?php endif; ?>
|
| 69 |
|
| 70 |
<?php print $tabs ?>
|
| 71 |
<?php print $help ?>
|
| 72 |
<?php print $messages ?>
|
| 73 |
<?php print $content ?>
|
| 74 |
<?php print $feed_icons ?>
|
| 75 |
|
| 76 |
<?php if ($content_bottom): ?>
|
| 77 |
<div id="content-bottom" class="clear-block"><?php print $content_bottom ?></div>
|
| 78 |
<?php endif; ?>
|
| 79 |
|
| 80 |
</div>
|
| 81 |
|
| 82 |
<?php if ($sidebar_left): ?>
|
| 83 |
<div id="sidebar-left" class="column sidebar">
|
| 84 |
<?php print $sidebar_left ?>
|
| 85 |
</div>
|
| 86 |
<?php endif; ?>
|
| 87 |
|
| 88 |
<?php if ($sidebar_right): ?>
|
| 89 |
<div id="sidebar-right" class="column sidebar">
|
| 90 |
<?php print $sidebar_right ?>
|
| 91 |
</div>
|
| 92 |
<?php endif; ?>
|
| 93 |
|
| 94 |
</div>
|
| 95 |
|
| 96 |
<!-- footer -->
|
| 97 |
<div id="footer">
|
| 98 |
<?php print $footer_message ?>
|
| 99 |
</div>
|
| 100 |
<?php print $closure ?>
|
| 101 |
</body>
|
| 102 |
</html>
|