| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
| 3 |
<meta name="distribution" content="global" />
|
| 4 |
<meta name="robots" content="follow, all" />
|
| 5 |
<meta name="language" content="en, sv" />
|
| 6 |
|
| 7 |
<title><?php print $head_title ?></title>
|
| 8 |
<?php print $head ?>
|
| 9 |
<?php print $styles ?>
|
| 10 |
<?php print $scripts ?>
|
| 11 |
<!-- leave this for stats please -->
|
| 12 |
|
| 13 |
</head>
|
| 14 |
|
| 15 |
<body <?php print theme("onload_attribute"); ?>>
|
| 16 |
<div id="navbar">
|
| 17 |
<div id="navbarright">
|
| 18 |
<?php if (is_array($primary_links)) : ?>
|
| 19 |
<?php
|
| 20 |
foreach($primary_links AS $links){
|
| 21 |
echo l($links['title'], $links['href']) .' | ';
|
| 22 |
}
|
| 23 |
endif;
|
| 24 |
?>
|
| 25 |
</div>
|
| 26 |
</div>
|
| 27 |
|
| 28 |
<!-- The main column ends -->
|
| 29 |
|
| 30 |
<div id="content">
|
| 31 |
|
| 32 |
<div id="contentleft">
|
| 33 |
<?php if ($title != ""): ?>
|
| 34 |
<h2 class="content-title"><?php print $title ?></h2>
|
| 35 |
<?php endif; ?>
|
| 36 |
<?php if ($tabs != ""): ?>
|
| 37 |
<?php print $tabs ?>
|
| 38 |
<?php endif; ?>
|
| 39 |
|
| 40 |
<?php if ($mission != ""): ?>
|
| 41 |
<p id="mission"><?php print $mission ?></p>
|
| 42 |
<?php endif; ?>
|
| 43 |
|
| 44 |
<?php if ($help != ""): ?>
|
| 45 |
<p id="help"><?php print $help ?></p>
|
| 46 |
<?php endif; ?>
|
| 47 |
|
| 48 |
<?php if ($messages != ""): ?>
|
| 49 |
<div id="message"><?php print $messages ?></div>
|
| 50 |
<?php endif; ?>
|
| 51 |
|
| 52 |
<!-- start main content -->
|
| 53 |
<?php print($content) ?>
|
| 54 |
<!-- end main content -->
|
| 55 |
|
| 56 |
</div>
|
| 57 |
|
| 58 |
<?php if ($sidebar_left != ""): ?>
|
| 59 |
<div id="l_sidebar">
|
| 60 |
<?php print $sidebar_left ?>
|
| 61 |
</div>
|
| 62 |
<?php endif; ?>
|
| 63 |
|
| 64 |
<?php if ($sidebar_right != ""): ?>
|
| 65 |
<div id="r_sidebar">
|
| 66 |
<?php print $sidebar_right ?>
|
| 67 |
</div>
|
| 68 |
<?php endif; ?>
|
| 69 |
</div>
|
| 70 |
|
| 71 |
<!-- The main column ends -->
|
| 72 |
<!-- begin footer -->
|
| 73 |
|
| 74 |
<div style="clear:both;"></div>
|
| 75 |
<div style="clear:both;"></div>
|
| 76 |
|
| 77 |
<div id="footerbg">
|
| 78 |
<div id="footer">
|
| 79 |
|
| 80 |
<div id="footerleft">
|
| 81 |
<?php print $footerleft; ?>
|
| 82 |
</div>
|
| 83 |
|
| 84 |
<div id="footermiddle1">
|
| 85 |
<?php print $footermiddle1; ?>
|
| 86 |
</div>
|
| 87 |
|
| 88 |
<div id="footermiddle2">
|
| 89 |
<?php print $footermiddle2; ?>
|
| 90 |
</div>
|
| 91 |
|
| 92 |
<div id="footerright">
|
| 93 |
<?php print $footerright; ?>
|
| 94 |
</div>
|
| 95 |
|
| 96 |
<div style="clear: both;">
|
| 97 |
|
| 98 |
</div>
|
| 99 |
</div>
|
| 100 |
</div>
|
| 101 |
|
| 102 |
<?php print $closure;?>
|
| 103 |
</body>
|
| 104 |
</html>
|
| 105 |
|