| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
| 2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 3 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language; ?>" xml:lang="<?php print $language; ?>">
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 7 |
<?php print $head ?>
|
| 8 |
<?php print $styles ?>
|
| 9 |
<script type="text/javascript"> </script>
|
| 10 |
|
| 11 |
|
| 12 |
</head>
|
| 13 |
<body><div class="bw1"><div class="bw2"><div id="body-wrap">
|
| 14 |
|
| 15 |
<div id="header"><div class="hw1"><div class="hw2">
|
| 16 |
<?php if ($site_name): ?>
|
| 17 |
<h1 id="site-name"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
|
| 18 |
<?php endif; ?>
|
| 19 |
|
| 20 |
<?php print $search_box ?>
|
| 21 |
|
| 22 |
<div id="top-nav">
|
| 23 |
|
| 24 |
<?php if (isset($primary_links)): ?>
|
| 25 |
<ul id="primary">
|
| 26 |
<?php foreach ($primary_links as $link): ?>
|
| 27 |
<li><?php print phptemplate_wrap_links($link, 2); ?></li>
|
| 28 |
<?php endforeach; ?>
|
| 29 |
</ul>
|
| 30 |
<?php endif; ?>
|
| 31 |
|
| 32 |
<?php if (isset($secondary_links)): ?>
|
| 33 |
<ul id="secondary">
|
| 34 |
<?php foreach (array_reverse($secondary_links) as $link): ?>
|
| 35 |
<li><?php print phptemplate_wrap_links($link, 2); ?></li>
|
| 36 |
<?php endforeach; ?>
|
| 37 |
</ul>
|
| 38 |
<?php endif; ?>
|
| 39 |
</div>
|
| 40 |
|
| 41 |
</div></div></div>
|
| 42 |
|
| 43 |
<div id="content" class="content-<?php print $layout; ?>"><div class="cw1"><div class="cw2"><div class="cw3"><div class="cw4"><div class="cw5"><div class="cw6"><div class="cw7"><div class="cw8">
|
| 44 |
<div id="content-wrap" class="content-wrap-<?php print $layout; ?>">
|
| 45 |
<?php if ($sidebar_left != ""): ?>
|
| 46 |
<div class="sidebar" id="sidebar-left">
|
| 47 |
<?php
|
| 48 |
// Mark first block title
|
| 49 |
list($a, $b) = explode('<h2>', $sidebar_left, 2);
|
| 50 |
print $a . '<h2 class="first">' . $b;
|
| 51 |
?>
|
| 52 |
</div>
|
| 53 |
<?php endif; ?>
|
| 54 |
<div id="main" class="main-<?php print $layout; ?>"><div id="main-wrap" class="main-wrap-<?php print $layout; ?>"><div class="mw1">
|
| 55 |
<?php print $header ?>
|
| 56 |
|
| 57 |
<?php if ($mission != ""): ?>
|
| 58 |
<div id="mission"><div class="sw1"><div class="sw2"><div class="sw3"><?php print $mission; ?></div></div></div></div>
|
| 59 |
<?php endif; ?>
|
| 60 |
|
| 61 |
<?php print $breadcrumb ?>
|
| 62 |
|
| 63 |
<?php if ($title): ?>
|
| 64 |
<h2 class="main-title"><?php print $title; ?></h2>
|
| 65 |
<?php endif; ?>
|
| 66 |
|
| 67 |
<?php if ($tabs): ?>
|
| 68 |
<?php print $tabs; ?>
|
| 69 |
<?php endif; ?>
|
| 70 |
|
| 71 |
<?php if ($help): ?>
|
| 72 |
<p id="help"><?php print $help; ?></p>
|
| 73 |
<?php endif; ?>
|
| 74 |
|
| 75 |
<?php if ($messages): ?>
|
| 76 |
<div id="message"><?php print $messages; ?></div>
|
| 77 |
<?php endif; ?>
|
| 78 |
|
| 79 |
<?php print phptemplate_wrap_content($content) ?>
|
| 80 |
|
| 81 |
<?php if ($footer_message): ?>
|
| 82 |
<div id="footer" class="footer-<?php print $layout; ?>"><p><?php print $footer_message; ?></p></div>
|
| 83 |
<?php endif; ?>
|
| 84 |
</div></div>
|
| 85 |
</div>
|
| 86 |
</div>
|
| 87 |
<?php if ($sidebar_right): ?>
|
| 88 |
<div class="sidebar" id="sidebar-right">
|
| 89 |
<?php
|
| 90 |
// Mark first block title
|
| 91 |
list($a, $b) = explode('<h2>', $sidebar_right, 2);
|
| 92 |
print $a . '<h2 class="first">' . $b;
|
| 93 |
?>
|
| 94 |
</div>
|
| 95 |
<?php endif; ?>
|
| 96 |
<span class="clear"></span>
|
| 97 |
</div></div></div></div></div></div></div></div></div>
|
| 98 |
|
| 99 |
<?php print $closure;?>
|
| 100 |
</div></div></div><div id="end" class="end-<?php print $layout; ?>"><div class="ew1"><div class="ew2"></div></div></div></body>
|
| 101 |
</html>
|