| 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" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
| 7 |
<meta name="description" content="website description goes here" />
|
| 8 |
<meta name="keywords" content="keywords,goes,here" />
|
| 9 |
<?php print $head ?>
|
| 10 |
<?php print $styles ?>
|
| 11 |
<?php print $scripts ?>
|
| 12 |
</head>
|
| 13 |
|
| 14 |
<body>
|
| 15 |
|
| 16 |
<div id="wrap">
|
| 17 |
|
| 18 |
<!--header -->
|
| 19 |
<div id="header">
|
| 20 |
<?php if ($logo) { ?><div id="logo"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a></div><?php } ?>
|
| 21 |
<?php if ($site_name) { ?><h1 id="logo-text"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 22 |
<?php if ($site_slogan) { ?><h2 id="slogan"><?php print $site_slogan ?></h2><?php } ?>
|
| 23 |
</div>
|
| 24 |
|
| 25 |
<div id="menu">
|
| 26 |
<?php print theme('menu_links', $primary_links) ?>
|
| 27 |
</div>
|
| 28 |
|
| 29 |
<!-- content-wrap starts here -->
|
| 30 |
<div id="content-wrap">
|
| 31 |
|
| 32 |
<div id="sidebar">
|
| 33 |
|
| 34 |
|
| 35 |
<?php if ($sidebar_left) { ?>
|
| 36 |
<?php print $sidebar_left ?>
|
| 37 |
<?php } ?>
|
| 38 |
</div>
|
| 39 |
|
| 40 |
|
| 41 |
<div id="main">
|
| 42 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 43 |
<?php if ($breadcrumb) { ?><div class="breadcrumb"><?php print $breadcrumb ?></div><?php } ?>
|
| 44 |
<?php if ($title) { ?><h1 class="title"><?php print $title ?></h1><?php } ?>
|
| 45 |
<div class="tabs"><?php print $tabs ?></div>
|
| 46 |
<?php print $help ?>
|
| 47 |
<?php print $messages ?>
|
| 48 |
<?php print $content; ?>
|
| 49 |
</div>
|
| 50 |
<!-- content-wrap ends here -->
|
| 51 |
</div>
|
| 52 |
|
| 53 |
<!--footer starts here-->
|
| 54 |
<div id="footer">
|
| 55 |
|
| 56 |
<p>
|
| 57 |
<?php print $footer_message ?>
|
| 58 |
</p>
|
| 59 |
|
| 60 |
</div>
|
| 61 |
</div>
|
| 62 |
<?php print $closure ?>
|
| 63 |
</body>
|
| 64 |
</html>
|