| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 2 |
|
| 3 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>">
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
|
| 7 |
<?php print $head ?>
|
| 8 |
<?php print $styles ?>
|
| 9 |
<?php print $scripts ?>
|
| 10 |
<?php require ('includes/box_layout.php');?>
|
| 11 |
|
| 12 |
<!--[if IE 6]>
|
| 13 |
<script type="text/javascript" src="<?php print $base_path ?>sites/all/themes/amity_island/js/DD_belatedPNG.js"></script>
|
| 14 |
<script type="text/javascript">
|
| 15 |
DD_belatedPNG.fix('#site-logo img, .sidebox-left h3, .sidebox-right h3');
|
| 16 |
</script>
|
| 17 |
<style type="text/css" media="all">@import "<?php echo $base_path ?>sites/all/themes/amity_island/ie6.css";</style>
|
| 18 |
<![endif]-->
|
| 19 |
|
| 20 |
<!--[if IE]>
|
| 21 |
<style type="text/css"> .width33 { width: 33.3%; } </style>
|
| 22 |
<![endif]-->
|
| 23 |
|
| 24 |
</head>
|
| 25 |
|
| 26 |
<body<?php print phptemplate_body_class($left, $right); ?>>
|
| 27 |
|
| 28 |
<div id="wrapper">
|
| 29 |
|
| 30 |
<div id="page-wrapper">
|
| 31 |
|
| 32 |
<div id="header-wrapper" class="clear-block">
|
| 33 |
|
| 34 |
<!-- If Site Logo Enabled -->
|
| 35 |
<?php if ($logo) { ?>
|
| 36 |
<div id="site-logo">
|
| 37 |
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo-image" /></a>
|
| 38 |
<?php if ($site_slogan) { ?>
|
| 39 |
<div class='site-slogan-logo'>
|
| 40 |
<h2>
|
| 41 |
<?php print $site_slogan ?>
|
| 42 |
</h2>
|
| 43 |
</div>
|
| 44 |
<?php } ?>
|
| 45 |
</div>
|
| 46 |
<?php } ?>
|
| 47 |
|
| 48 |
<!-- If Site Name Enabled -->
|
| 49 |
<?php if ($site_name) { ?>
|
| 50 |
<div id="site-name">
|
| 51 |
<a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a>
|
| 52 |
<?php if ($site_slogan) { ?>
|
| 53 |
<div class='site-slogan'>
|
| 54 |
<h2><?php print $site_slogan ?></h2>
|
| 55 |
</div>
|
| 56 |
<?php } ?>
|
| 57 |
</div>
|
| 58 |
<?php } ?>
|
| 59 |
|
| 60 |
<!-- If Search Box Enabled -->
|
| 61 |
<?php if ($search_box): ?>
|
| 62 |
<div id="search-box">
|
| 63 |
<?php print $search_box; ?>
|
| 64 |
</div>
|
| 65 |
<?php endif; ?>
|
| 66 |
|
| 67 |
</div><!-- End of header-wrapper -->
|
| 68 |
|
| 69 |
<!-- Primary Links -->
|
| 70 |
<?php if ($primary): ?>
|
| 71 |
<div id="primary-links">
|
| 72 |
<?php print $primary ?>
|
| 73 |
</div>
|
| 74 |
<?php endif; ?>
|
| 75 |
|
| 76 |
<!-- Secondary Links -->
|
| 77 |
<?php if ($secondary): ?>
|
| 78 |
<div id="secondary-links" class="clear-block">
|
| 79 |
<?php print $secondary ?>
|
| 80 |
</div>
|
| 81 |
<?php endif; ?>
|
| 82 |
|
| 83 |
<!-- Top User Regions -->
|
| 84 |
<?php if ($user1 || $user2 || $user3) { ?>
|
| 85 |
<div id="topboxes" class="clear-block">
|
| 86 |
<?php if ($user1) { ?>
|
| 87 |
<div class="userbox <?php echo $topBoxes; ?>">
|
| 88 |
<div class="userbox-inner">
|
| 89 |
<?php print $user1 ?>
|
| 90 |
</div>
|
| 91 |
</div>
|
| 92 |
<?php }?>
|
| 93 |
<?php if ($user2) { ?>
|
| 94 |
<div class="userbox <?php echo $topBoxes; ?>">
|
| 95 |
<div class="userbox-inner">
|
| 96 |
<?php print $user2 ?>
|
| 97 |
</div>
|
| 98 |
</div>
|
| 99 |
<?php }?>
|
| 100 |
<?php if ($user3) { ?>
|
| 101 |
<div class="userbox <?php echo $topBoxes; ?>">
|
| 102 |
<div class="userbox-inner">
|
| 103 |
<?php print $user3 ?>
|
| 104 |
</div>
|
| 105 |
</div>
|
| 106 |
<?php }?>
|
| 107 |
</div><!-- End of Top User Regions -->
|
| 108 |
<?php } ?>
|
| 109 |
|
| 110 |
<!-- Main Layout Div & Conditional Statement -->
|
| 111 |
<div id="middle-wrapper" class="clear-block">
|
| 112 |
|
| 113 |
<!-- Left Sidebar -->
|
| 114 |
<?php if ($left) { ?>
|
| 115 |
<div class="sidebar-left">
|
| 116 |
<?php print $left ?>
|
| 117 |
</div>
|
| 118 |
<?php } ?>
|
| 119 |
|
| 120 |
<!-- Main Content Area -->
|
| 121 |
<div id="main-content">
|
| 122 |
<div id="squeeze">
|
| 123 |
<div id="main-content-inner">
|
| 124 |
<?php print $tabs ?>
|
| 125 |
<?php print $contenttop ?>
|
| 126 |
<?php if ($breadcrumb) { ?>
|
| 127 |
<div class="clear-block">
|
| 128 |
<?php print $breadcrumb ?>
|
| 129 |
</div>
|
| 130 |
<?php } ?>
|
| 131 |
<?php if ($title) { ?>
|
| 132 |
<div class="node-title">
|
| 133 |
<?php print $title ?>
|
| 134 |
</div>
|
| 135 |
<?php } ?>
|
| 136 |
<?php print $help ?>
|
| 137 |
<?php print $messages ?>
|
| 138 |
<?php print $content; ?>
|
| 139 |
<?php print $feed_icons; ?>
|
| 140 |
<?php print $contentbottom ?>
|
| 141 |
</div>
|
| 142 |
</div>
|
| 143 |
</div>
|
| 144 |
|
| 145 |
<!-- Right Sidebar -->
|
| 146 |
<?php if ($right) { ?>
|
| 147 |
<div class="sidebar-right">
|
| 148 |
<?php print $right ?>
|
| 149 |
</div>
|
| 150 |
<?php } ?>
|
| 151 |
</div>
|
| 152 |
|
| 153 |
<!-- Bottom User Regions -->
|
| 154 |
<?php if ($user4 || $user5 || $user6) { ?>
|
| 155 |
<div id="bottomboxes" class="clear-block">
|
| 156 |
<?php if ($user4) { ?>
|
| 157 |
<div class="userbox-bottom <?php echo $bottomBoxes; ?>">
|
| 158 |
<div class="userbox-bottom-inner">
|
| 159 |
<?php print $user4 ?>
|
| 160 |
</div>
|
| 161 |
</div>
|
| 162 |
<?php }?>
|
| 163 |
<?php if ($user5) { ?>
|
| 164 |
<div class="userbox-bottom <?php echo $bottomBoxes; ?>">
|
| 165 |
<div class="userbox-bottom-inner">
|
| 166 |
<?php print $user5 ?>
|
| 167 |
</div>
|
| 168 |
</div>
|
| 169 |
<?php }?>
|
| 170 |
<?php if ($user6) { ?>
|
| 171 |
<div class="userbox-bottom <?php echo $bottomBoxes; ?>">
|
| 172 |
<div class="userbox-bottom-inner">
|
| 173 |
<?php print $user6 ?>
|
| 174 |
</div>
|
| 175 |
</div>
|
| 176 |
<?php }?>
|
| 177 |
</div><!-- End of Bottom User Regions -->
|
| 178 |
<?php } ?>
|
| 179 |
|
| 180 |
<!-- The All Knowing All Seeing Footer Block -->
|
| 181 |
<div id="footer" class="clear-block">
|
| 182 |
<?php print $footer ?>
|
| 183 |
<div style="text-align: center; padding: 5px; font-size: 0.9em;">
|
| 184 |
Designed by ThemeShark.com and Nowtheme.com - <a style="text-decoration: none;" href="http://www.ThemeShark.com/">
|
| 185 |
<b>Drupal Themes</b></a> and <a style="text-decoration: none;" href="http://www.nowtheme.com/"><b>Wordpress Themes</b></a> with Bite!
|
| 186 |
</div>
|
| 187 |
</div>
|
| 188 |
|
| 189 |
<!-- Script Closure -->
|
| 190 |
<?php print $closure ?>
|
| 191 |
|
| 192 |
</div><!-- End of page-wrapper -->
|
| 193 |
</div>
|
| 194 |
</body>
|
| 195 |
</html>
|