| 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 |
|
|
| 4 |
|
<head> |
| 5 |
|
<title><?php print $head_title ?></title> |
| 6 |
|
<?php print $head ?> |
| 7 |
|
<?php print $styles ?> |
| 8 |
|
<?php print $scripts ?> |
| 9 |
|
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script> |
| 10 |
|
</head> |
| 11 |
|
|
| 12 |
|
<body id="<?php if ($is_front) { print 'home'; } else { print 'second'; } ?>"> |
| 13 |
|
<div id="page" class="<?php if ($sidebar_left || $sidebar_right) { print "one-sidebar"; } if ($sidebar_right && $sidebar_left) { print " two-sidebars"; }?>"> |
| 14 |
|
|
| 15 |
|
<div id="header"> |
| 16 |
|
|
| 17 |
|
<div id="logo-title"> |
| 18 |
|
|
| 19 |
|
<?php if ($logo): ?> |
| 20 |
|
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"> |
| 21 |
|
<img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" id="logo" /> |
| 22 |
|
</a> |
| 23 |
|
<?php endif; ?> |
| 24 |
|
|
| 25 |
|
<?php if ($site_name): ?> |
| 26 |
|
<h1 id='site-name'> |
| 27 |
|
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"> |
| 28 |
|
<?php print $site_name ?> |
| 29 |
|
</a> |
| 30 |
|
</h1> |
| 31 |
|
<?php endif; ?> |
| 32 |
|
|
| 33 |
|
<?php if ($site_slogan): ?> |
| 34 |
|
<div id='site-slogan'> |
| 35 |
|
<?php print $site_slogan ?> |
| 36 |
|
</div> |
| 37 |
|
<?php endif; ?> |
| 38 |
|
|
| 39 |
|
</div> |
| 40 |
|
|
| 41 |
|
<div class="menu <?php if ($primary_links) { print "withprimary"; } if ($secondary_links) { print " withsecondary"; } ?> "> |
| 42 |
|
<?php if ($secondary_links): ?> |
| 43 |
|
<div id="secondary" class="clear-block"> |
| 44 |
|
<?php print theme('menu_links', $secondary_links) ?> |
| 45 |
|
</div> |
| 46 |
|
<?php endif; ?> |
| 47 |
|
</div> |
| 48 |
|
|
| 49 |
|
<?php if ($header): ?> |
| 50 |
|
<div id="header-region"> |
| 51 |
|
<?php print $header ?> |
| 52 |
|
</div> |
| 53 |
|
<?php endif; ?> |
| 54 |
|
</div> |
| 55 |
|
|
| 56 |
|
<?php if ($primary_links): ?> |
| 57 |
|
<div id="primarylinks" class="clear-block"> |
| 58 |
|
<?php print theme('menu_links', $primary_links) ?> |
| 59 |
|
</div> |
| 60 |
|
<?php endif; ?> |
| 61 |
|
|
| 62 |
|
|
| 63 |
|
<div id="container" class="<?php if ($sidebar_left) { print "withleft"; } if ($sidebar_right) { print " withright"; }?> clear-block"> |
| 64 |
|
<div id="main-wrapper"> |
| 65 |
|
<div id="main" class="clear-block"> |
| 66 |
|
<?php print $breadcrumb ?> |
| 67 |
|
<?php if ($mission): ?><div id="mission"><?php print $mission ?></div><?php endif; ?> |
| 68 |
|
<?php if ($content_top):?><div id="content-top"><?php print $content_top ?></div><?php endif; ?> |
| 69 |
|
<?php if ($title): ?><h1 class="title"><?php print $title ?></h1><?php endif; ?> |
| 70 |
|
<?php if ($tabs): ?><div class="tabs"><?php print $tabs ?></div><?php endif; ?> |
| 71 |
|
<?php print $help ?> |
| 72 |
|
<?php print $messages ?> |
| 73 |
|
<?php print $content ?> |
| 74 |
|
<?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom ?></div><?php endif; ?> |
| 75 |
|
</div> |
| 76 |
|
</div> |
| 77 |
|
|
| 78 |
|
<?php if ($sidebar_left): ?> |
| 79 |
|
<div id="sidebar-left" class="sidebar"> |
| 80 |
|
<?php print $search_box ?> |
| 81 |
|
<?php print $sidebar_left ?> |
| 82 |
|
</div> |
| 83 |
|
<?php endif; ?> |
| 84 |
|
|
| 85 |
|
<?php if ($sidebar_right): ?> |
| 86 |
|
<div id="sidebar-right" class="sidebar"> |
| 87 |
|
<?php print $sidebar_right ?> |
| 88 |
|
</div> |
| 89 |
|
<?php endif; ?> |
| 90 |
|
|
| 91 |
|
</div> |
| 92 |
|
|
| 93 |
|
<div id="footer"> |
| 94 |
|
<?php print $footer_message ?> |
| 95 |
|
</div> |
| 96 |
|
<div class="copy"> |
| 97 |
|
<p>Design by <a href="http://art4linux.org">xactive</a> - <!-- Please do not remove this command line --> </p> |
| 98 |
|
</div> |
| 99 |
|
|
| 100 |
|
<?php print $closure ?> |
| 101 |
|
|
| 102 |
|
</div> |
| 103 |
|
|
| 104 |
|
</body> |
| 105 |
|
</html> |