| 1 |
<?php
|
| 2 |
echo("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
|
| 3 |
?>
|
| 4 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 5 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
| 6 |
<head>
|
| 7 |
<title><?php print $head_title ?></title>
|
| 8 |
<?php print $head ?>
|
| 9 |
<?php print $styles ?>
|
| 10 |
<?php print $scripts ?>
|
| 11 |
<!--[if lte IE 6]>
|
| 12 |
<style type="text/css">
|
| 13 |
/* CSS Fix for IE 6 and below. */
|
| 14 |
.page #header h1 {padding: 10px 0;}
|
| 15 |
</style>
|
| 16 |
<![endif]-->
|
| 17 |
</head>
|
| 18 |
|
| 19 |
<body class="page">
|
| 20 |
<div id="container">
|
| 21 |
<!-- start #header -->
|
| 22 |
<div id="header">
|
| 23 |
<!-- start #logoandtitle -->
|
| 24 |
<div id="logoandtitle">
|
| 25 |
<div class="logo">
|
| 26 |
<?php if ($logo) { ?><a href="<?php print check_url($base_path); ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
|
| 27 |
</div>
|
| 28 |
<div class="title">
|
| 29 |
<h1><a href="<?php print check_url($base_path); ?>"><?php print check_plain($site_name); ?></a></h1>
|
| 30 |
<?php if ($site_slogan) { ?><h2><?php print $site_slogan ?></h2><?php } ?>
|
| 31 |
</div>
|
| 32 |
</div>
|
| 33 |
<!-- end #logoandtitle -->
|
| 34 |
|
| 35 |
<?php if (isset($primary_links)): ?>
|
| 36 |
<div id="navigation">
|
| 37 |
<?php
|
| 38 |
//see http://drupal.org/node/140491
|
| 39 |
// print theme('links', $primary_links);
|
| 40 |
print phptemplate_light_primarylinks($primary_links);
|
| 41 |
?>
|
| 42 |
</div>
|
| 43 |
<?php endif; ?>
|
| 44 |
</div>
|
| 45 |
<!-- end #header -->
|
| 46 |
|
| 47 |
<!-- start #wrap -->
|
| 48 |
<div id="wrap">
|
| 49 |
<!-- start #content -->
|
| 50 |
<div id="content">
|
| 51 |
|
| 52 |
<?php if ($mission != ""): ?>
|
| 53 |
<div id="mission"><?php print $mission ?></div>
|
| 54 |
<?php endif; ?>
|
| 55 |
|
| 56 |
<?php print $header; ?>
|
| 57 |
|
| 58 |
<?php if ($title != ""): ?>
|
| 59 |
<h2><?php print $title ?></h2>
|
| 60 |
<?php endif; ?>
|
| 61 |
|
| 62 |
<?php if ($breadcrumb) { ?><div class="breadcrumb"><?php print $breadcrumb ?></div><?php } ?>
|
| 63 |
|
| 64 |
<?php if ($tabs != ""): ?>
|
| 65 |
<?php print $tabs ?>
|
| 66 |
<?php endif; ?>
|
| 67 |
|
| 68 |
<?php if ($help != ""): ?>
|
| 69 |
<p id="help"><?php print $help ?></p>
|
| 70 |
<?php endif; ?>
|
| 71 |
|
| 72 |
<?php if ($messages != ""): ?>
|
| 73 |
<?php print $messages ?>
|
| 74 |
<?php endif; ?>
|
| 75 |
|
| 76 |
<?php print($content) ?>
|
| 77 |
|
| 78 |
</div>
|
| 79 |
<!-- end #content -->
|
| 80 |
|
| 81 |
<!-- start #sidebar -->
|
| 82 |
<div id="sidebar">
|
| 83 |
<?php if ($sidebar): ?>
|
| 84 |
<?php print $sidebar; ?>
|
| 85 |
<?php endif; ?>
|
| 86 |
</div>
|
| 87 |
<!-- end #sidebar -->
|
| 88 |
|
| 89 |
</div>
|
| 90 |
<!-- end #wrap -->
|
| 91 |
|
| 92 |
<div style="clear:both;"> </div>
|
| 93 |
|
| 94 |
<!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats --><br class="clearfloat" />
|
| 95 |
|
| 96 |
<!-- start #footer -->
|
| 97 |
<div id="footer">
|
| 98 |
<p><?php print $footer_message ?> | Theme based on <a href="http://wpzone.net/">Light Theme</a></p>
|
| 99 |
</div>
|
| 100 |
<!-- end #footer -->
|
| 101 |
</div>
|
| 102 |
<!-- end #container -->
|
| 103 |
<?php
|
| 104 |
print $closure
|
| 105 |
?>
|
| 106 |
</body>
|
| 107 |
</html>
|