| 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 |
<?php print $head ?>
|
| 7 |
<?php print $styles ?>
|
| 8 |
<?php print $scripts ?>
|
| 9 |
<script src="<?php print $base_path ?><?php print $directory ?>/sifr/sifr.js" type="text/javascript"></script>
|
| 10 |
<script src="<?php print $base_path ?><?php print $directory ?>/sifr/sifr-addons.js" type="text/javascript"></script>
|
| 11 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 12 |
</head>
|
| 13 |
<body<?php print $onload_attributes ?>>
|
| 14 |
<table border="0" cellpadding="0" cellspacing="0" id="header">
|
| 15 |
<tr>
|
| 16 |
<td rowspan="2" id="logo"> <?php if ($logo) { ?> <a href="<?php print $base_path ?>" title="Home"><img src="<?php print $logo ?>" alt="Home" /></a> <?php } ?></td>
|
| 17 |
<td colspan="2" id="prime-top"> <div id="primary-tabs">
|
| 18 |
|
| 19 |
<?php print theme('navlinks', $primary_links); ?>
|
| 20 |
|
| 21 |
</div></td>
|
| 22 |
</tr>
|
| 23 |
<tr>
|
| 24 |
<td id="fname">
|
| 25 |
<?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="Home"><?php print $site_name ?></a></h1><?php } ?>
|
| 26 |
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?> </td>
|
| 27 |
|
| 28 |
<td id="menu"><?php print $search_box ?><?php if (isset($secondary_links)) { ?><div id="secondary"><?php print theme('links', $secondary_links) ?></div><?php } ?>
|
| 29 |
</td>
|
| 30 |
</tr>
|
| 31 |
<?php if ($header) { ?>
|
| 32 |
<tr>
|
| 33 |
<td colspan="3"><div><?php print $header ?></div></td>
|
| 34 |
</tr>
|
| 35 |
<?php } ?>
|
| 36 |
</table>
|
| 37 |
|
| 38 |
<table border="0" cellpadding="0" cellspacing="0" id="content">
|
| 39 |
<tr>
|
| 40 |
<?php if ($sidebar_left) { ?><td id="sidebar-left">
|
| 41 |
<?php print $sidebar_left ?>
|
| 42 |
</td><?php } ?>
|
| 43 |
<td valign="top">
|
| 44 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 45 |
<div id="main">
|
| 46 |
<?php print $breadcrumb ?>
|
| 47 |
<?php if ($node == 0): ?>
|
| 48 |
<h1 class="title"><?php print $title ?></h1> <?php endif; ?>
|
| 49 |
<div class="tabs"><?php print $tabs ?></div>
|
| 50 |
<?php print $help ?>
|
| 51 |
<?php print $messages ?>
|
| 52 |
|
| 53 |
<?php print $content; ?>
|
| 54 |
</div>
|
| 55 |
</td>
|
| 56 |
<?php if ($sidebar_right) { ?><td id="sidebar-right">
|
| 57 |
<?php print $sidebar_right ?>
|
| 58 |
</td><?php } ?>
|
| 59 |
</tr>
|
| 60 |
</table>
|
| 61 |
|
| 62 |
<table id="footer" border="0" cellspacing="0" cellpadding="0">
|
| 63 |
<tr>
|
| 64 |
<th id="copyright" scope="col">Copyright © <?php print $site_name ?> <br />
|
| 65 |
Powered by <a href="http://www.drupal.org" target="_blank">Drupal</a> <br />
|
| 66 |
Designed by <a href="http://www.gleez.com" target="_blank">Gleez</a> <br />
|
| 67 |
</th>
|
| 68 |
<th id="footer-msg" scope="col"> <?php if (isset($primary_links)) { ?><div id="primary" align="center"><?php print theme('links', $primary_links) ?></div> <?php } ?><br />
|
| 69 |
<?php print $footer_message ?></th>
|
| 70 |
</tr>
|
| 71 |
</table>
|
| 72 |
|
| 73 |
<?php print $closure ?>
|
| 74 |
<script type="text/javascript">
|
| 75 |
//<![CDATA[
|
| 76 |
|
| 77 |
if(typeof sIFR == "function"){
|
| 78 |
|
| 79 |
// Site Name
|
| 80 |
sIFR.replaceElement(named({sSelector:"h1.site-name", sFlashSrc:"<?php print $base_path ?><?php print $directory ?>/sifr/vandenkeere.swf", sColor:"#ce5003", sLinkColor:"#2a2ad8", sWmode:"transparent", sHoverColor:"#ffffff", nPaddingTop:0, nPaddingBottom:0, sFlashVars:"textalign=left&offsetTop=0"}));
|
| 81 |
|
| 82 |
// Node Title
|
| 83 |
sIFR.replaceElement(named({sSelector:"h2.sifr-node-title", sFlashSrc:"<?php print $base_path ?><?php print $directory ?>/sifr/akbar.swf", sColor:"#FF4500", sLinkColor:"#FF4500", sBgColor:"#ffffff", sHoverColor:"#F88017", nPaddingTop:0, nPaddingBottom:0, sFlashVars:"textalign=left&offsetTop=0"}));
|
| 84 |
|
| 85 |
};
|
| 86 |
|
| 87 |
//]]>
|
| 88 |
</script>
|
| 89 |
</body>
|
| 90 |
</html>
|