| 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->language; ?>" xml:lang="<?php print $language->language; ?>">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title; ?></title>
|
| 6 |
<?php print $head; ?>
|
| 7 |
<?php print $styles; ?>
|
| 8 |
<!--[if IE]>
|
| 9 |
<link rel="stylesheet" href="<?php print $base_path . $directory; ?>/ie.css" type="text/css">
|
| 10 |
<![endif]-->
|
| 11 |
<?php print $scripts; ?>
|
| 12 |
</head>
|
| 13 |
|
| 14 |
<body class="<?php print $body_classes; ?>">
|
| 15 |
|
| 16 |
<div id="page"><div id="page-inner">
|
| 17 |
|
| 18 |
<a name="top" id="navigation-top"></a>
|
| 19 |
<div id="skip-to-nav"><a href="#navigation"><?php print t('Skip to Navigation'); ?></a></div>
|
| 20 |
|
| 21 |
<div id="header"><div id="header-inner" class="clear-block">
|
| 22 |
|
| 23 |
<?php if ($logo || $site_name || $site_slogan): ?>
|
| 24 |
<div id="logo-title">
|
| 25 |
|
| 26 |
<?php if ($logo): ?>
|
| 27 |
<div id="logo"><a href="<?php print $front_page ?>" title="<?php print t('Home'); ?>" rel="home"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo-image" /></a></div>
|
| 28 |
<?php endif; ?>
|
| 29 |
|
| 30 |
<?php if ($site_name): ?>
|
| 31 |
<?php
|
| 32 |
// Use an H1 only on the homepage
|
| 33 |
$tag = $is_front ? 'h1' : 'div';
|
| 34 |
?>
|
| 35 |
<<?php print $tag; ?> id='site-name'><strong>
|
| 36 |
<a href="<?php print $front_page ?>" title="<?php print t('Home'); ?>" rel="home">
|
| 37 |
<?php print $site_name; ?>
|
| 38 |
</a>
|
| 39 |
</strong></<?php print $tag; ?>>
|
| 40 |
<?php endif; ?>
|
| 41 |
|
| 42 |
<?php if ($site_slogan): ?>
|
| 43 |
<div id='site-slogan'><?php print $site_slogan; ?></div>
|
| 44 |
<?php endif; ?>
|
| 45 |
|
| 46 |
</div> <!-- /#logo-title -->
|
| 47 |
<?php endif; ?>
|
| 48 |
|
| 49 |
<?php if ($search_box || $primary_links || $secondary_links || $navbar): ?>
|
| 50 |
<div id="navbar"><div id="navbar-inner">
|
| 51 |
|
| 52 |
<a name="navigation" id="navigation"></a>
|
| 53 |
|
| 54 |
<?php if ($search_box): ?>
|
| 55 |
<div id="search-box">
|
| 56 |
<div id="search-label"><?php print t('Search') ?></div>
|
| 57 |
<?php print $search_box; ?>
|
| 58 |
</div> <!-- /#search-box -->
|
| 59 |
<span class="clear"></span>
|
| 60 |
<?php endif; ?>
|
| 61 |
|
| 62 |
<?php if ($primary_links): ?>
|
| 63 |
<div id="primary">
|
| 64 |
<?php print theme('links', $primary_links); ?>
|
| 65 |
</div> <!-- /#primary -->
|
| 66 |
<span class="clear"></span>
|
| 67 |
<?php endif; ?>
|
| 68 |
|
| 69 |
<?php if ($secondary_links): ?>
|
| 70 |
<div id="secondary">
|
| 71 |
<?php print theme('links', $secondary_links); ?>
|
| 72 |
</div> <!-- /#secondary -->
|
| 73 |
<?php endif; ?>
|
| 74 |
|
| 75 |
|
| 76 |
</div></div> <!-- /#navbar-inner, /#navbar -->
|
| 77 |
<?php endif; ?>
|
| 78 |
<?php if ($header): ?>
|
| 79 |
<div id="header-blocks">
|
| 80 |
<?php print $header; ?>
|
| 81 |
</div> <!-- /#header-blocks -->
|
| 82 |
<?php endif; ?>
|
| 83 |
</div></div> <!-- /#header-inner, /#header -->
|
| 84 |
<div id="header-image">
|
| 85 |
<?php
|
| 86 |
$breadcrumb2 = str_replace(' › ', ' // ', $breadcrumb);
|
| 87 |
$breadcrumb3 = str_replace('<div class="breadcrumb">', '', $breadcrumb2);
|
| 88 |
if ($is_front) {print '<div class="breadcrumb">// ' . t('Home') . '</div>';} else { echo '<div class="breadcrumb">// ' . str_replace('</div>', '', $breadcrumb3) . $title . '</div>' ;} ?>
|
| 89 |
</div>
|
| 90 |
|
| 91 |
<div id="main"><div id="main-inner" class="clear-block<?php if ($search_box || $primary_links || $secondary_links || $navbar) { print ' with-navbar'; } ?>">
|
| 92 |
|
| 93 |
<div id="content"><div id="content-inner">
|
| 94 |
|
| 95 |
|
| 96 |
|
| 97 |
<?php if ($title or $tabs or $help or $show_messages && $messages): ?>
|
| 98 |
<div id="content-header">
|
| 99 |
<?php if ($title): ?>
|
| 100 |
<h1 class="title"><?php print $title; ?></h1>
|
| 101 |
<?php endif; ?>
|
| 102 |
<?php print $messages; ?>
|
| 103 |
<?php if ($tabs): ?>
|
| 104 |
<div class="tabs"><?php print $tabs; ?></div>
|
| 105 |
<?php endif; ?>
|
| 106 |
<?php print $help; ?>
|
| 107 |
</div> <!-- /#content-header -->
|
| 108 |
<?php endif; ?>
|
| 109 |
|
| 110 |
<div id="content-area">
|
| 111 |
<?php print $content; ?>
|
| 112 |
</div>
|
| 113 |
|
| 114 |
<?php if ($feed_icons): ?>
|
| 115 |
<div class="feed-icons"><?php print $feed_icons; ?></div>
|
| 116 |
<?php endif; ?>
|
| 117 |
|
| 118 |
</div></div> <!-- /#content-inner, /#content -->
|
| 119 |
|
| 120 |
<div id="right-container">
|
| 121 |
<?php if ($mission): ?>
|
| 122 |
<div id="mission"><?php print $mission; ?></div>
|
| 123 |
<?php endif; ?>
|
| 124 |
|
| 125 |
<?php if ($left): ?>
|
| 126 |
<div id="sidebar-left"><div id="sidebar-left-inner">
|
| 127 |
<?php print $left; ?>
|
| 128 |
</div></div> <!-- /#sidebar-left-inner, /#sidebar-left -->
|
| 129 |
<?php endif; ?>
|
| 130 |
|
| 131 |
<?php if ($right): ?>
|
| 132 |
<div id="sidebar-right"><div id="sidebar-right-inner">
|
| 133 |
<?php print $right; ?>
|
| 134 |
</div></div> <!-- /#sidebar-right-inner, /#sidebar-right -->
|
| 135 |
<?php endif; ?>
|
| 136 |
</div>
|
| 137 |
</div></div> <!-- /#main-inner, /#main -->
|
| 138 |
|
| 139 |
<div id="footer"><div id="footer-inner">
|
| 140 |
|
| 141 |
<div id="footer-message"><?php echo $footer_message . $footer ?></div>
|
| 142 |
<div style="float:right;"><a href="http://www.avioso.com">Theme port</a> sponsored by Duplika <a href="http://www.duplika.com">Web Hosting</a>.</div>
|
| 143 |
<span class="clear"></span>
|
| 144 |
</div></div> <!-- /#footer-inner, /#footer -->
|
| 145 |
|
| 146 |
<?php print $closure; ?>
|
| 147 |
|
| 148 |
</div></div> <!-- /#page-inner, /#page -->
|
| 149 |
|
| 150 |
</body>
|
| 151 |
</html>
|