| 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 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<?php print $scripts ?>
|
| 8 |
<?php print phptemplate_get_basecolour_style(); ?>
|
| 9 |
<?php print phptemplate_get_layout_style(); ?>
|
| 10 |
|
| 11 |
<!--[if lte IE 7]><?php print phptemplate_get_ie_styles(); ?><![endif]--><!--If Less Than or Equal (lte) to IE 7-->
|
| 12 |
</head>
|
| 13 |
<body<?php print phptemplate_body_class($left, $right); ?>>
|
| 14 |
<!-- Layout -->
|
| 15 |
<div id="wrapper">
|
| 16 |
<div id="header">
|
| 17 |
<?php print $header; ?>
|
| 18 |
|
| 19 |
<?php if ($logo): ?>
|
| 20 |
<a href="<?php print check_url($front_page); ?>" title="<?php print check_plain($site_name); ?>">
|
| 21 |
<img src="<?php print check_url($logo); ?>" alt="<?php print check_plain($site_name); ?>" id="logo" />
|
| 22 |
</a>
|
| 23 |
<?php endif; ?>
|
| 24 |
<?php print '<h1><a href="'. check_url($front_page) .'" title="'. check_plain($site_name) .'">';
|
| 25 |
if ($site_name) {
|
| 26 |
print '<span id="sitename">'. check_plain($site_name) .'</span>';
|
| 27 |
}
|
| 28 |
?>
|
| 29 |
</a></h1>
|
| 30 |
<?php
|
| 31 |
if ($site_slogan) {
|
| 32 |
print '<p>'. check_plain($site_slogan) .'</p>';
|
| 33 |
}
|
| 34 |
?>
|
| 35 |
|
| 36 |
<div class="clear"></div>
|
| 37 |
</div> <!-- /#header -->
|
| 38 |
|
| 39 |
<div id="nav">
|
| 40 |
<?php if (isset($primary_links)) : ?>
|
| 41 |
<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
|
| 42 |
<?php endif; ?>
|
| 43 |
</div> <!-- /#nav -->
|
| 44 |
|
| 45 |
<div id="container">
|
| 46 |
<?php if ($left): ?>
|
| 47 |
<div id="sidebar-left" class="sidebar">
|
| 48 |
<?php print $left ?>
|
| 49 |
</div> <!-- /#sidebar-left -->
|
| 50 |
<?php endif; ?>
|
| 51 |
<?php if ($right): ?>
|
| 52 |
<div id="sidebar-right" class="sidebar">
|
| 53 |
<?php print $right ?>
|
| 54 |
</div> <!-- /#sidebar-right -->
|
| 55 |
<?php endif; ?>
|
| 56 |
<div id="center">
|
| 57 |
<?php print $breadcrumb; ?>
|
| 58 |
<?php if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; ?>
|
| 59 |
<?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
|
| 60 |
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs"' : '') .'>'. $title .'</h2>'; endif; ?>
|
| 61 |
<?php if ($tabs): print '<ul class="tabs primary">'. $tabs .'</ul></div>'; endif; ?>
|
| 62 |
<?php if ($tabs2): print '<ul class="tabs secondary">'. $tabs2 .'</ul>'; endif; ?>
|
| 63 |
<?php if ($show_messages && $messages): print $messages; endif; ?>
|
| 64 |
<?php print $help; ?>
|
| 65 |
<?php print $content ?>
|
| 66 |
</div> <!-- /#center -->
|
| 67 |
<div id="footer" class="clear">
|
| 68 |
<?php print $footer_message . $footer; ?>
|
| 69 |
<p>Original design by <a href='http://andreasviklund.com/'>Andreas Viklund</a> | Drupal port by <a href='http://www.nickbits.co.uk'>Nick Young</a></p>
|
| 70 |
</div> <!-- /#footer -->
|
| 71 |
</div> <!-- /#container -->
|
| 72 |
</div> <!-- /#wrapper -->
|
| 73 |
<!-- /layout -->
|
| 74 |
<?php print $closure ?>
|
| 75 |
</body>
|
| 76 |
</html>
|