| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 5 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language ?>">
|
| 6 |
|
| 7 |
<head>
|
| 8 |
<title><?php print $head_title ?></title>
|
| 9 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 10 |
<?php print $head ?>
|
| 11 |
<style type="text/css" media="screen">@import "<?php print base_path(). path_to_theme(); ?>/andreas01.css";</style>
|
| 12 |
<style type="text/css" media="projection">@import "<?php print base_path(). path_to_theme(); ?>/andreas01.css";</style>
|
| 13 |
<style type="text/css" media="print">@import "<?php print base_path(). path_to_theme(); ?>/print.css";</style>
|
| 14 |
<?php print $styles ?>
|
| 15 |
</head>
|
| 16 |
|
| 17 |
<body>
|
| 18 |
<div id="wrap">
|
| 19 |
<div id="header">
|
| 20 |
<?php if ($site_name) { ?><h1 class="site_name"><a href="<?php print base_path() ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 21 |
<?php if ($site_slogan) { ?><p id="subtext"><?php print $site_slogan ?></p><?php } ?>
|
| 22 |
</div>
|
| 23 |
|
| 24 |
<img id="frontphoto" src="<?php if ($logo) { ?><?php print $logo ?><?php } else { ?><?php print base_path(). path_to_theme(); ?>/front.jpg<?php } ?>" width="760" height="175" alt="" />
|
| 25 |
|
| 26 |
<div id="avmenu">
|
| 27 |
<?php if ($primary_links) { ?>
|
| 28 |
<h2 class="hide"><?php print t("Primary Links:")?></h2>
|
| 29 |
<ul id="primary-links">
|
| 30 |
<?php foreach ($primary_links as $link) { ?>
|
| 31 |
<li><?php print $link?></li>
|
| 32 |
<?php }; ?>
|
| 33 |
</ul>
|
| 34 |
<?php }; ?>
|
| 35 |
<?php if ($sidebar_left != "") { ?>
|
| 36 |
<div class="announce"><?php print $sidebar_left ?></div><?php /* print left sidebar if any blocks enabled */ ?>
|
| 37 |
<?php }; ?>
|
| 38 |
</div>
|
| 39 |
|
| 40 |
<?php if ($sidebar_right != "") { ?>
|
| 41 |
<div id="extras"><?php print $sidebar_right ?></div><?php /* print right sidebar if any blocks enabled */ ?>
|
| 42 |
<?php }; ?>
|
| 43 |
|
| 44 |
<div id="content">
|
| 45 |
<div id="content-wrap">
|
| 46 |
<div id="breadcrumb"><?php print $breadcrumb ?></div>
|
| 47 |
|
| 48 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 49 |
<?php print $help ?>
|
| 50 |
<?php print $messages ?>
|
| 51 |
|
| 52 |
<?php if ($title) { ?><h2 class="title"><?php print $title ?></h2><?php } ?>
|
| 53 |
<div class="tabs"><?php print $tabs ?></div>
|
| 54 |
|
| 55 |
<?php print $content; ?>
|
| 56 |
|
| 57 |
</div>
|
| 58 |
</div>
|
| 59 |
|
| 60 |
<div class="footer" id="footer"><?php print $footer_message ?></div>
|
| 61 |
<?php print $closure ?>
|
| 62 |
</div>
|
| 63 |
</body>
|
| 64 |
</html>
|