| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
| 2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 3 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>">
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 7 |
<?php print $head ?>
|
| 8 |
</head>
|
| 9 |
|
| 10 |
<body <?php print theme("onload_attribute"); ?>>
|
| 11 |
|
| 12 |
<a href="<?php print url($_GET['q'], array('query' => NULL, 'fragment' => 'nav', 'absolute' => TRUE)); ?>"><?php print t('skip to navigation');?></a>
|
| 13 |
<?php if ($title != ""): ?>
|
| 14 |
<h2 class="content-title"><?php print $title ?></h2>
|
| 15 |
<?php endif; ?>
|
| 16 |
<?php if ($help != ""): ?>
|
| 17 |
<p id="help"><?php print $help ?></p>
|
| 18 |
<?php endif; ?>
|
| 19 |
<?php if ($messages != ""): ?>
|
| 20 |
<div id="message"><?php print $messages ?></div>
|
| 21 |
<?php endif; ?>
|
| 22 |
<?php print $content ?>
|
| 23 |
<?php if ($tabs != ""): ?>
|
| 24 |
<?php print $tabs ?>
|
| 25 |
<?php endif; ?>
|
| 26 |
<a name="nav"></a>
|
| 27 |
<?php print $left . $right; ?>
|
| 28 |
<?php if ($footer_message) : ?>
|
| 29 |
<?php print $footer;?>
|
| 30 |
<?php endif; ?>
|
| 31 |
<?php print $closure;?>
|
| 32 |
</body>
|
| 33 |
</html>
|
| 34 |
|