| 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 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
| 6 |
<?php print $head ?>
|
| 7 |
<?php print $styles ?>
|
| 8 |
<?php print $scripts ?>
|
| 9 |
</head>
|
| 10 |
|
| 11 |
<body>
|
| 12 |
<div id="container">
|
| 13 |
<div id="branding">
|
| 14 |
<?php if ($logo) : ?>
|
| 15 |
<a href="<?php print url() ?>" title="<?php t('Index Page') ?>"><img src="<?php print($logo) ?>" alt="Logo" id="branding-logo"/></a>
|
| 16 |
<?php endif; ?>
|
| 17 |
|
| 18 |
<?php if ($site_name) : ?>
|
| 19 |
<h1 id="branding-name"><a href="<?php print url() ?>" title="<?php t('Index Page') ?>"><?php print($site_name) ?></a></h1>
|
| 20 |
<?php endif;?>
|
| 21 |
|
| 22 |
<?php if ($site_slogan) : ?>
|
| 23 |
<span id="branding-tagline"><?php print($site_slogan) ?></span>
|
| 24 |
<?php endif;?>
|
| 25 |
|
| 26 |
<?php print $branding ?>
|
| 27 |
</div>
|
| 28 |
|
| 29 |
<div id="content">
|
| 30 |
<?php if (!empty($tabs)) print $tabs ?>
|
| 31 |
|
| 32 |
<div id="content-main">
|
| 33 |
<?php if (!empty($title)): ?>
|
| 34 |
<h2 class="content title" id="content-title"><?php print $title ?></h2>
|
| 35 |
<?php endif; ?>
|
| 36 |
|
| 37 |
<?php if ($content_prefix): ?>
|
| 38 |
<div id="content-prefix" class="content prefix"><?php print $content_prefix ?></div>
|
| 39 |
<?php endif; ?>
|
| 40 |
|
| 41 |
<?php if (!empty($mission)): ?>
|
| 42 |
<div id="content-mission"><?php print $mission ?></div>
|
| 43 |
<?php endif; ?>
|
| 44 |
|
| 45 |
<?php if (!empty($help)): ?>
|
| 46 |
<p id="content-help"><?php print $help ?></p>
|
| 47 |
<?php endif; ?>
|
| 48 |
|
| 49 |
<?php if (!empty($messages)): ?>
|
| 50 |
<div id="content-message"><?php print $messages ?></div>
|
| 51 |
<?php endif; ?>
|
| 52 |
|
| 53 |
<?php print $content; ?>
|
| 54 |
|
| 55 |
<?php if ($content_postfix): ?>
|
| 56 |
<div id="content-postfix" class="content postfix"><?php print $content_postfix ?></div>
|
| 57 |
<?php endif; ?>
|
| 58 |
</div>
|
| 59 |
</div>
|
| 60 |
|
| 61 |
<div id="navigation">
|
| 62 |
<?php if (!empty($primary_links)): ?>
|
| 63 |
<?php print theme('primary_links', $primary_links); ?>
|
| 64 |
<?php endif; ?>
|
| 65 |
<?php if (!empty($secondary_links)): ?>
|
| 66 |
<?php print theme('secondary_links', $secondary_links); ?>
|
| 67 |
<?php endif; ?>
|
| 68 |
<?php print $breadcrumb; ?>
|
| 69 |
<?php print $navigation; ?>
|
| 70 |
</div>
|
| 71 |
|
| 72 |
<div id="tools">
|
| 73 |
<?php if (!empty($tools)) print $tools ?>
|
| 74 |
</div>
|
| 75 |
|
| 76 |
<?php if ($search): ?>
|
| 77 |
<div id="search">
|
| 78 |
<?php print $search; ?>
|
| 79 |
</div>
|
| 80 |
<?php endif; ?>
|
| 81 |
|
| 82 |
<div id="siteinfo">
|
| 83 |
<?php print $footer ?>
|
| 84 |
<?php if ($footer_message): ?>
|
| 85 |
<p id="siteinfo-details"><?php print $footer_message;?></p>
|
| 86 |
<?php endif; ?>
|
| 87 |
</div>
|
| 88 |
</div>
|
| 89 |
<?php print $closure;?>
|
| 90 |
</body>
|
| 91 |
</html>
|