| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>">
|
| 3 |
<!-- Theme Design by niGraphic.com -->
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<?php print $head ?>
|
| 7 |
<?php print $styles ?>
|
| 8 |
<?php print $scripts ?>
|
| 9 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 10 |
</head>
|
| 11 |
<body>
|
| 12 |
<div id="pagewidth">
|
| 13 |
<div id="header">
|
| 14 |
<div id="HeaderWidth">
|
| 15 |
<div id="HeaderWrapper" class="clearfix">
|
| 16 |
<div id="HeaderTwocols" class="clearfix">
|
| 17 |
<div id="HeaderMenu">
|
| 18 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'linksTop', 'id' => 'navlist')) ?><?php } ?> </div>
|
| 19 |
</div>
|
| 20 |
<div id="HeaderSearch">
|
| 21 |
<?php print $search_box ?></div>
|
| 22 |
</div>
|
| 23 |
<div id="logo">
|
| 24 |
<?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print $site_name ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 25 |
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?></div>
|
| 26 |
</div>
|
| 27 |
</div>
|
| 28 |
<div id="wrapper" class="clearfix">
|
| 29 |
<div id="twocols<?php if (!$left) {print "NoLeft";}?>" class="clearfix">
|
| 30 |
<div id="maincol">
|
| 31 |
<?php print $breadcrumb ?>
|
| 32 |
<h1 class="title"><?php print $title ?></h1>
|
| 33 |
<div class="tabs"><?php print $tabs ?></div>
|
| 34 |
<?php print $help ?>
|
| 35 |
<?php print $messages ?>
|
| 36 |
<?php print $content; ?>
|
| 37 |
<?php print $feed_icons; ?>
|
| 38 |
</div>
|
| 39 |
|
| 40 |
<?php if ($right) { ?>
|
| 41 |
<div id="rightcol">
|
| 42 |
<?php print $right ?>
|
| 43 |
</div>
|
| 44 |
<?php } ?>
|
| 45 |
</div>
|
| 46 |
|
| 47 |
<?php if ($left) { ?>
|
| 48 |
<div id="leftcol">
|
| 49 |
<?php print $left ?>
|
| 50 |
</div>
|
| 51 |
<?php } ?>
|
| 52 |
</div>
|
| 53 |
<div id="footer">
|
| 54 |
<?php print $footer_message ?>
|
| 55 |
<br/><a href="http://www.nigraphic.com" title="Web Design & Photography"> Design by niGraphic</a></div>
|
| 56 |
</div>
|
| 57 |
<?php print $closure ?>
|
| 58 |
</body>
|
| 59 |
</html>
|