| 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" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
|
| 3 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 6 |
<?php print $head ?><?php print $styles ?>
|
| 7 |
</head>
|
| 8 |
|
| 9 |
<body <?php print theme("onload_attribute"); ?>>
|
| 10 |
<div id="container">
|
| 11 |
<div id="top">
|
| 12 |
<div>
|
| 13 |
<?php if ($logo) { ?><a id="logo" href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>"/></a><?php } ?>
|
| 14 |
<?php if ($site_name) { ?><a class="site-name" href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a><?php } ?>
|
| 15 |
<?php if ($site_slogan) { ?><div class="site-slogan"><?php print $site_slogan ?></div><?php } ?>
|
| 16 |
</div>
|
| 17 |
<div id="navigation">
|
| 18 |
<?php if (isset($primary_links)) { ?><div id="primary"><?php print theme('links', $primary_links) ?></div><?php } ?>
|
| 19 |
<?php if (isset($secondary_links)) { ?><div id="secondary"><?php print theme('links', $secondary_links) ?></div><?php } ?>
|
| 20 |
</div>
|
| 21 |
<!-- <div> ?php print $search_box ? </div> -->
|
| 22 |
</div>
|
| 23 |
<?php if ($sidebar_left) { ?> <div id="leftnav"><?php print $sidebar_left ?></div> <?php } ?>
|
| 24 |
<?php if ($sidebar_right) { ?> <div id="rightnav"><?php print $sidebar_right ?></div> <?php } ?>
|
| 25 |
<div id="content">
|
| 26 |
<!-- print $breadcrumb ?> -->
|
| 27 |
<?php if ($header != ""): ?><div id="header"><?php print $header ?></div><?php endif; ?>
|
| 28 |
<?php if ($title != ""): ?><h2 class="content-title"><?php print $title ?></h2><?php endif; ?>
|
| 29 |
<?php if ($tabs != ""): ?><?php print $tabs ?><?php endif; ?>
|
| 30 |
<?php if ($mission != ""): ?><div id="mission"><?php print $mission ?></div><?php endif; ?>
|
| 31 |
<?php if ($help != ""): ?><p id="help"><?php print $help ?></p><?php endif; ?>
|
| 32 |
<?php if ($messages != ""): ?><div id="message"><?php print $messages ?></div><?php endif; ?>
|
| 33 |
<!-- start main content --><?php print($content) ?><!-- end main content -->
|
| 34 |
</div>
|
| 35 |
<div id="footer"><?php print $footer_message;?><p>This website design based on <a href="http://teleology.ru">Teleology</a> theme for <a href="http://drupal.org">Drupal</a>, which is <a href="http://www.gnu.org/copyleft/">copyleft</a> (c) 2005-2006 <a href="http://www.teleology.ru/feedback">Denis Polevoi</a>. All rights reserved.</p></div>
|
| 36 |
</div>
|
| 37 |
<?php print $closure;?>
|
| 38 |
</body>
|
| 39 |
</html>
|