| 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" xml:lang="<?php print $language ?>" lang="<?php print $language ?>">
|
| 3 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<?php print $scripts ?>
|
| 8 |
</head>
|
| 9 |
<body>
|
| 10 |
<!-- PRIMARY_LINKS -->
|
| 11 |
<div class="menuWrapper">
|
| 12 |
<div class="menuBlockSub">
|
| 13 |
<div id="menuItems">
|
| 14 |
<?php if (is_array($primary_links)) : ?>
|
| 15 |
<?php
|
| 16 |
foreach($primary_links AS $links){
|
| 17 |
echo l($links['title'], $links['href']);
|
| 18 |
}
|
| 19 |
endif;
|
| 20 |
?>
|
| 21 |
</div>
|
| 22 |
</div>
|
| 23 |
</div>
|
| 24 |
<!-- TOP -->
|
| 25 |
<div class="spotTopWrapperSubpage">
|
| 26 |
<div class="spotTopBlockSubpage">
|
| 27 |
<div class="baseArea">
|
| 28 |
<div class="banner">
|
| 29 |
<a href="<?php print check_url($base_path); ?>"><?php
|
| 30 |
if ($logo) {
|
| 31 |
print '<img src="'. check_url($logo) .'" id="logo" />';
|
| 32 |
}
|
| 33 |
?></a>
|
| 34 |
</div>
|
| 35 |
<div class="header">
|
| 36 |
<h2><a href="<?php print check_url($base_path); ?>"><?php print check_plain($site_name); ?></a></h2>
|
| 37 |
<p><?php print check_plain($site_slogan); ?></p>
|
| 38 |
</div>
|
| 39 |
</div>
|
| 40 |
</div>
|
| 41 |
</div>
|
| 42 |
<div class="spotMenuSeparatorWrapper"><div class="spotMenuSeparatorBlock"></div></div>
|
| 43 |
<!-- MENU -->
|
| 44 |
<div class="baseBlock">
|
| 45 |
<div class="menuleft">
|
| 46 |
<?php if ($sidebar_left != ""): ?>
|
| 47 |
<?php print $sidebar_left ?>
|
| 48 |
<?php endif; ?>
|
| 49 |
|
| 50 |
<?php if ($sidebar_right != ""): ?>
|
| 51 |
<?php print $sidebar_right ?>
|
| 52 |
<?php endif; ?>
|
| 53 |
</div>
|
| 54 |
<!-- CONTENT -->
|
| 55 |
<div class="base">
|
| 56 |
<?php if ($breadcrumb): print $breadcrumb; endif; ?>
|
| 57 |
<?php print $header; ?>
|
| 58 |
<?php if ($title != ""): ?>
|
| 59 |
<h1><?php print $title ?></h1>
|
| 60 |
<?php endif; ?>
|
| 61 |
<?php if ($tabs != ""): ?>
|
| 62 |
<?php print $tabs ?>
|
| 63 |
<?php endif; ?>
|
| 64 |
<?php if ($mission != ""): ?>
|
| 65 |
<p id="mission"><?php print $mission ?></p>
|
| 66 |
<?php endif; ?>
|
| 67 |
<?php if ($help != ""): ?>
|
| 68 |
<p id="help"><?php print $help ?></p>
|
| 69 |
<?php endif; ?>
|
| 70 |
<?php if ($messages != ""): ?>
|
| 71 |
<div id="message"><?php print $messages ?></div>
|
| 72 |
<?php endif; ?>
|
| 73 |
<!-- start main content -->
|
| 74 |
<?php print($content) ?>
|
| 75 |
<!-- end main content -->
|
| 76 |
</div>
|
| 77 |
<div class="columnClear"></div>
|
| 78 |
</div>
|
| 79 |
<!-- FOOTER -->
|
| 80 |
<div class="footerWrapper">
|
| 81 |
<div class="footerBlock">
|
| 82 |
<div class="footerbase">
|
| 83 |
<?php print $footer_message ?>
|
| 84 |
</div></div></div>
|
| 85 |
<div align="center" class="copy">
|
| 86 |
<p>powered by <a href="http://www.drupal.org/">Drupal</a> - <!-- Please do not remove this command line --> template <a href="http://florall.ru/">FlorAll</a></p>
|
| 87 |
</div>
|
| 88 |
<?php print $closure;?>
|
| 89 |
</body>
|
| 90 |
</html>
|
| 91 |
|