| 1 |
<!DOCTYPE html PUBLIC
|
| 2 |
"-//W3C//DTD XHTML 1.0 Strict//EN"
|
| 3 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 4 |
<html xmlns="http://www.w3.org/1999/xhtml"
|
| 5 |
lang="<?php print $language ?>"
|
| 6 |
xml:lang="<?php print $language ?>">
|
| 7 |
<!--
|
| 8 |
| Copyright 2006 Frederic G. MARAND
|
| 9 |
| Licensed under the GPL version 2.0
|
| 10 |
-->
|
| 11 |
<head>
|
| 12 |
<title><?php print $head_title ?></title>
|
| 13 |
<?php print $head ?>
|
| 14 |
<?php print $styles ?>
|
| 15 |
<script type="text/javascript"><?php /* avoid Flash of Unstyle Content in IE */ ?></script>
|
| 16 |
<link rel="stylesheet" type="text/css" href="/themes/nested/nested.css" />
|
| 17 |
</head>
|
| 18 |
|
| 19 |
<body>
|
| 20 |
<div id="bodyguard">
|
| 21 |
<div id="header">
|
| 22 |
<div id="logo"><?php
|
| 23 |
if ($logo)
|
| 24 |
{
|
| 25 |
echo '<a href="' . $base_path . '" title="' . t('Home') . '">'
|
| 26 |
. '<img src="' . $logo . '" alt="' . t('Home') . "\" /></a>\n";
|
| 27 |
}
|
| 28 |
?>
|
| 29 |
</div>
|
| 30 |
<div id="slogname"><?php
|
| 31 |
if ($site_name) { echo '<h1 class="site-name">' . l($site_name, $base_url) . "</h1>\n"; }
|
| 32 |
if ($site_slogan) { echo "<div class=\"site-slogan\">$site_slogan</div>\n"; }
|
| 33 |
?>
|
| 34 |
</div>
|
| 35 |
<div id="menu"><?php
|
| 36 |
if (isset($primary_links))
|
| 37 |
{
|
| 38 |
echo '<div id="primary">'
|
| 39 |
. theme('links', $primary_links)
|
| 40 |
. "</div>\n" ;
|
| 41 |
}
|
| 42 |
if (isset($secondary_links))
|
| 43 |
{
|
| 44 |
echo '<div id="secondary">'
|
| 45 |
. theme('links', $secondary_links)
|
| 46 |
. "</div>\n" ;
|
| 47 |
}
|
| 48 |
echo $search_box;
|
| 49 |
?>
|
| 50 |
</div>
|
| 51 |
<?php
|
| 52 |
if ($header)
|
| 53 |
{
|
| 54 |
echo '<div id="header-content">' . $header . '</div>';
|
| 55 |
}
|
| 56 |
?>
|
| 57 |
</div><!--/header-->
|
| 58 |
<div id="content">
|
| 59 |
<div id="main">
|
| 60 |
<?php
|
| 61 |
if ($sidebar_left)
|
| 62 |
{
|
| 63 |
echo "<div id=\"sidebar-left\">$sidebar_left</div>\n";
|
| 64 |
}
|
| 65 |
if ($sidebar_right)
|
| 66 |
{
|
| 67 |
echo "<div id=\"sidebar-right\">$sidebar_right</div>\n";
|
| 68 |
}
|
| 69 |
if ($mission)
|
| 70 |
{
|
| 71 |
echo "<div id=\"mission\">$mission</div>\n" ;
|
| 72 |
}
|
| 73 |
echo $breadcrumb;
|
| 74 |
echo "<h1 class=\"title\">$title</h1>\n";
|
| 75 |
echo "<div class=\"tabs\">$tabs</div>\n";
|
| 76 |
echo "$help\n";
|
| 77 |
echo "$messages\n";
|
| 78 |
echo "$content\n";
|
| 79 |
?>
|
| 80 |
</div>
|
| 81 |
</div>
|
| 82 |
</div><!-- main div-->
|
| 83 |
<div id="footer">
|
| 84 |
<?php echo $footer_message ?>
|
| 85 |
</div>
|
| 86 |
<?php print $closure ?>
|
| 87 |
</body>
|
| 88 |
</html>
|