| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
| 3 |
<head>
|
| 4 |
<title> <?php print $head_title ?></title>
|
| 5 |
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
| 6 |
<meta name="description" content="<?php print($site_slogan) ?>" />
|
| 7 |
<meta name="author" content="Original design: Andreas Viklund - http://andreasviklund.com/" />
|
| 8 |
<link rel="stylesheet" href="/<?php echo $base_path . $directory; ?>/andreas06.css" type="text/css" media="screen,projection" />
|
| 9 |
<?php print $head ?>
|
| 10 |
<?php print $styles ?>
|
| 11 |
</head>
|
| 12 |
|
| 13 |
<body <?php echo $onload_attributes;?>>
|
| 14 |
<div id="container">
|
| 15 |
<a id="top"></a><p class="hide">Skip to: <a href="#menu">site menu</a> | <a href="#sectionmenu">section menu</a> | <a href="#main">main content</a></p>
|
| 16 |
<div id="sitename">
|
| 17 |
<h1><?php print $site_name; ?></h1>
|
| 18 |
<?php if ($site_slogan) : ?>
|
| 19 |
<span> <?php print($site_slogan) ?> </span>
|
| 20 |
<?php endif;?>
|
| 21 |
<a id="menu"></a>
|
| 22 |
</div>
|
| 23 |
|
| 24 |
<div id="nav">
|
| 25 |
<?php
|
| 26 |
if (is_array($secondary_links) and count($secondary_links)){
|
| 27 |
echo '</ul>';
|
| 28 |
foreach($secondary_links as $l){
|
| 29 |
echo "<li>$l</li>";
|
| 30 |
}
|
| 31 |
echo '</ul>';
|
| 32 |
}
|
| 33 |
?>
|
| 34 |
</div><div id="wrap1">
|
| 35 |
<div id="wrap2">
|
| 36 |
<div id="topbox">
|
| 37 |
<?php echo $header; ?>
|
| 38 |
<?php if ($breadcrumb != "") print '<strong><span class="hide">Currently viewing: </span>' . $breadcrumb ; ?>
|
| 39 |
</strong>
|
| 40 |
</div>
|
| 41 |
<div id="leftside">
|
| 42 |
<a id="sectionmenu"></a>
|
| 43 |
<p class="menublock">
|
| 44 |
<?php if ($sidebar_left != "") print $sidebar_left ?>
|
| 45 |
</p>
|
| 46 |
</div>
|
| 47 |
<div id="rightside">
|
| 48 |
<?php if ($sidebar_right != ""): ?>
|
| 49 |
<?php print $sidebar_right ?>
|
| 50 |
<?php endif; ?>
|
| 51 |
</div>
|
| 52 |
|
| 53 |
<a id="main"></a>
|
| 54 |
<div id="content">
|
| 55 |
<?php print $tabs ?>
|
| 56 |
<?php if ($title != ""): ?>
|
| 57 |
<h1> <?php print $title ?> </h1>
|
| 58 |
<?php endif; ?>
|
| 59 |
|
| 60 |
<?php if ($mission != ""): ?>
|
| 61 |
<p id="mission"> <?php print $mission ?> </p>
|
| 62 |
<?php endif; ?>
|
| 63 |
|
| 64 |
<?php print $help ?> </p>
|
| 65 |
<?php print $messages ?>
|
| 66 |
<div class="content">
|
| 67 |
<!-- start main content -->
|
| 68 |
<?php print($content) ?>
|
| 69 |
<!-- end main content -->
|
| 70 |
</div>
|
| 71 |
<p class="hide"><a href="#top">Back to top</a></p>
|
| 72 |
</div>
|
| 73 |
</div>
|
| 74 |
|
| 75 |
<div id="footer"><?php echo $footer; ?> Design by <a href="http://andreasviklund.com">Andreas Viklund</a></div>
|
| 76 |
</div></div>
|
| 77 |
</body>
|
| 78 |
<?php echo $closure; ?>
|
| 79 |
</html>
|