| 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" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<?php print $head ?>
|
| 7 |
<?php print $styles ?>
|
| 8 |
</head>
|
| 9 |
|
| 10 |
<body>
|
| 11 |
|
| 12 |
<div id="above" class="clear-block"></div>
|
| 13 |
|
| 14 |
<div id="page">
|
| 15 |
|
| 16 |
<div id="masthead">
|
| 17 |
<div id="header2">
|
| 18 |
|
| 19 |
<div id="header" class="clear-block">
|
| 20 |
<div class="header-right">
|
| 21 |
<div class="header-left">
|
| 22 |
<div id="logo">
|
| 23 |
<?php if ($logo): ?>
|
| 24 |
<a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>">
|
| 25 |
<img src="<?php print $logo ?>" alt="<?php print t('Home'); ?>" />
|
| 26 |
</a>
|
| 27 |
<?php endif; ?>
|
| 28 |
</div> <!-- /logo -->
|
| 29 |
<div id="name-and-slogan">
|
| 30 |
<?php if ($site_name): ?>
|
| 31 |
<h1 id="site-name">
|
| 32 |
<a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>">
|
| 33 |
<?php print $site_name ?>
|
| 34 |
</a>
|
| 35 |
</h1>
|
| 36 |
<?php endif; ?>
|
| 37 |
<?php if ($site_slogan): ?>
|
| 38 |
<div id="site-slogan">
|
| 39 |
<?php print $site_slogan ?>
|
| 40 |
</div>
|
| 41 |
<?php endif; ?>
|
| 42 |
</div> <!-- /name-and-slogan -->
|
| 43 |
</div> <!-- /header-left -->
|
| 44 |
</div> <!-- /header-right -->
|
| 45 |
</div> <!-- /header -->
|
| 46 |
|
| 47 |
</div>
|
| 48 |
</div>
|
| 49 |
|
| 50 |
<div id="prenav"></div>
|
| 51 |
|
| 52 |
<div id="postnav"></div>
|
| 53 |
|
| 54 |
<div id="middlecontainer">
|
| 55 |
<div id="offline">
|
| 56 |
<div id="content">
|
| 57 |
<div id="main">
|
| 58 |
<h1 class="title"><?php print $title ?></h1>
|
| 59 |
<div class="tabs"><?php print $tabs ?></div>
|
| 60 |
<?php print $help ?>
|
| 61 |
<?php if ($show_messages) { print $messages; } ?>
|
| 62 |
<?php print $content ?>
|
| 63 |
<?php print $feed_icons ?>
|
| 64 |
</div>
|
| 65 |
</div>
|
| 66 |
</div>
|
| 67 |
</div>
|
| 68 |
|
| 69 |
<div id="footer-wrapper" class="clear-block">
|
| 70 |
<div id="bar2"></div>
|
| 71 |
<div id="footer">
|
| 72 |
<div class="legal">
|
| 73 |
Copyright © <?php print date('Y') ?> <a href="/"><?php print $site_name ?></a>
|
| 74 |
<div id="brand"></div>
|
| 75 |
</div>
|
| 76 |
<div class="by">
|
| 77 |
<em>by</em> <a href="http://www.radut.net/"> Dr. Radut</a>
|
| 78 |
</div>
|
| 79 |
</div>
|
| 80 |
<div class="footer-right">
|
| 81 |
<div class="footer-left">
|
| 82 |
</div> <!-- /footer-left -->
|
| 83 |
</div> <!-- /footer-right -->
|
| 84 |
</div> <!-- /footer-wrapper -->
|
| 85 |
|
| 86 |
<div id="shadow" class="clear-block">
|
| 87 |
<div class="shadow-right">
|
| 88 |
<div class="shadow-left">
|
| 89 |
</div>
|
| 90 |
</div>
|
| 91 |
</div>
|
| 92 |
|
| 93 |
</div>
|
| 94 |
|
| 95 |
<?php print $closure ?>
|
| 96 |
</body>
|
| 97 |
</html>
|