| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
| 2 |
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 3 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
| 4 |
<head>
|
| 5 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<meta name="author" content="Chris Herberte www.xweb.com.au / Original design: Andreas Viklund - http://andreasviklund.com/" />
|
| 8 |
|
| 9 |
<title><?php print $head_title ?></title>
|
| 10 |
</head>
|
| 11 |
|
| 12 |
<body>
|
| 13 |
<div id="thetop">
|
| 14 |
<a id="top"></a>
|
| 15 |
<p class="hide">Skip to: <a href="#sitemenu" accesskey="2">Site menu</a> | <a href="#maincontent" accesskey="3">Main content</a></p>
|
| 16 |
</div>
|
| 17 |
|
| 18 |
<div id="container">
|
| 19 |
<div id="main">
|
| 20 |
|
| 21 |
<div id="logo">
|
| 22 |
<h1>[<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a>]</h1>
|
| 23 |
<span id="tagline"><?php if ($site_slogan) { ?><h2><?php print $site_slogan ?></h2><?php } ?></span>
|
| 24 |
</div>
|
| 25 |
|
| 26 |
<div id="intro">
|
| 27 |
<?php print $search_box ?>
|
| 28 |
|
| 29 |
</div>
|
| 30 |
<div class="clear"></div>
|
| 31 |
|
| 32 |
<div id="content">
|
| 33 |
<h1><?php print $title ?></h1>
|
| 34 |
<?php print $breadcrumb ?>
|
| 35 |
<?php print $tabs ?>
|
| 36 |
<?php print $help ?>
|
| 37 |
<?php print $messages ?>
|
| 38 |
<?php print $content; ?>
|
| 39 |
</div>
|
| 40 |
|
| 41 |
</div>
|
| 42 |
|
| 43 |
<div id="sidebar">
|
| 44 |
|
| 45 |
<h2 class="sidelink menuheader"><a id="sitemenu"></a>Site menu:</h2>
|
| 46 |
<?php if (isset($primary_links)) { ?><?php print xweb_primary_links(); ?><?php } ?>
|
| 47 |
<a class="hide" href="#top" accesskey="1">Top of page</a>
|
| 48 |
|
| 49 |
<?php if ($sidebar_left) { ?><?php print $sidebar_left ?><?php } ?>
|
| 50 |
|
| 51 |
|
| 52 |
</div>
|
| 53 |
|
| 54 |
|
| 55 |
<div class="clear"> </div>
|
| 56 |
</div>
|
| 57 |
|
| 58 |
<div id="footer">
|
| 59 |
<?php print $footer_message ?>
|
| 60 |
<?php if (isset($secondary_links)) { ?><?php print ' | ' . theme('links', $secondary_links) ?><?php } ?>
|
| 61 |
</div>
|
| 62 |
|
| 63 |
</body>
|
| 64 |
</html>
|