| 1 |
<?php
|
| 2 |
// $Id:
|
| 3 |
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 4 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 5 |
|
| 6 |
<head>
|
| 7 |
<title><?php print $head_title ?></title>
|
| 8 |
<meta name="author" content="Chris Herberte http://www.xweb.com.au" />
|
| 9 |
<?php print $head ?>
|
| 10 |
<?php print $styles ?>
|
| 11 |
<?php print $scripts ?>
|
| 12 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 13 |
</head>
|
| 14 |
|
| 15 |
<body>
|
| 16 |
<div id="container" class="clear-block">
|
| 17 |
|
| 18 |
<div id="header" class="clear-block">
|
| 19 |
<div id="logo">
|
| 20 |
<?php if ($logo) { ?><a href="<?php print $base_path ?>" title="Home"><img src="<?php print $logo ?>" alt="Home" /></a><?php } ?>
|
| 21 |
</div>
|
| 22 |
<div id="header-right">
|
| 23 |
<div id="sitename">
|
| 24 |
<?php if ($site_name) { ?><a href="<?php print $base_path ?>" title="Home"><?php print $site_name ?></a><?php } ?>
|
| 25 |
</div>
|
| 26 |
<div id="slogan">
|
| 27 |
<?php if ($site_slogan) { ?><?php print $site_slogan ?><?php } ?>
|
| 28 |
</div>
|
| 29 |
<div id="primary">
|
| 30 |
<?php if ($primary_links) { ?><?php print theme('links', $primary_links) ?><?php } ?>
|
| 31 |
</div>
|
| 32 |
</div>
|
| 33 |
</div>
|
| 34 |
|
| 35 |
<div id="sidebar-container">
|
| 36 |
<div id="sidebar">
|
| 37 |
<?php if ($left) { ?><?php print $left ?><?php } ?>
|
| 38 |
<?php if ($right) { ?><?php print $right ?><?php } ?>
|
| 39 |
</div>
|
| 40 |
<div id="sidebar-footer">
|
| 41 |
</div>
|
| 42 |
</div>
|
| 43 |
|
| 44 |
<div id="content">
|
| 45 |
<?php print $breadcrumb; ?>
|
| 46 |
<?php if ($show_messages) { print $messages; } ?>
|
| 47 |
<h2 class="title"><?php print $title ?></h2>
|
| 48 |
<?php print $help ?>
|
| 49 |
<?php print $tabs ?>
|
| 50 |
<?php print $content; ?>
|
| 51 |
<?php print $feed_icons ?>
|
| 52 |
</div>
|
| 53 |
|
| 54 |
<div class="clear-block">
|
| 55 |
</div>
|
| 56 |
|
| 57 |
<div id="footer">
|
| 58 |
<?php print $footer ?>
|
| 59 |
<?php if (isset($secondary_links)) { ?>
|
| 60 |
<?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'seclink')) ?>
|
| 61 |
<?php } ?>
|
| 62 |
<span id="designby">
|
| 63 |
<?php if ($site_name) { ?>© <?php print date('Y') ." ". $site_name ?> : <?php } ?>Design by <a href="http://www.xweb.com.au">Chris Herberte</a>
|
| 64 |
</span>
|
| 65 |
</div>
|
| 66 |
</div>
|
| 67 |
<?php print $closure ?>
|
| 68 |
|
| 69 |
</body>
|
| 70 |
</html>
|