| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 5 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language ?>">
|
| 6 |
|
| 7 |
<head>
|
| 8 |
<title><?php print $head_title ?></title>
|
| 9 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 10 |
<?php print $head ?>
|
| 11 |
<style type="text/css" media="screen">@import "<?php print base_path(). path_to_theme(); ?>/seoposition.css";</style>
|
| 12 |
<style type="text/css" media="projection">@import "<?php print base_path(). path_to_theme(); ?>/seoposition.css";</style>
|
| 13 |
<style type="text/css" media="print">@import "<?php print base_path(). path_to_theme(); ?>/print.css";</style>
|
| 14 |
<?php print $styles ?>
|
| 15 |
</head>
|
| 16 |
<body>
|
| 17 |
<?php /* CONTENT WRAPPER */ ?>
|
| 18 |
<div id="globalwrap">
|
| 19 |
<?php /* TOP HEADER BEGIN */ ?>
|
| 20 |
<div id="header">
|
| 21 |
<?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
|
| 22 |
<?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 23 |
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
|
| 24 |
</div>
|
| 25 |
<?php /* END HEADER */ ?>
|
| 26 |
<?php /* NAVIGATION BEGIN */ ?>
|
| 27 |
<div id="nav">
|
| 28 |
<div id="subNav">
|
| 29 |
<?php if (is_array($secondary_links)) { ?>
|
| 30 |
<?php $i = 0;foreach ($secondary_links as $link) : if ($i==0) {?>
|
| 31 |
<?php
|
| 32 |
} else {?>
|
| 33 |
<?php
|
| 34 |
}?><?php print $link ?>
|
| 35 |
<?php $i++;
|
| 36 |
endforeach; ?>
|
| 37 |
<?php } ?>
|
| 38 |
</div>
|
| 39 |
</div>
|
| 40 |
<?php /* END HEADER */ ?>
|
| 41 |
<?php $wider_screen = array('block','settings','themes'); // added for more admin usability, add more as needed ?>
|
| 42 |
<?php /* MAIN CONTENT BEGINS */ ?>
|
| 43 |
<div id="content" <?php if (in_array(arg(1),$wider_screen)) { ?> style="width : 850px;"<?php } ?>>
|
| 44 |
<?php /* LEFT COLUMN BEGIN */ ?>
|
| 45 |
<div id="primary">
|
| 46 |
<?php print $breadcrumb ?>
|
| 47 |
<?php if ($mission) { ?><div id="mission"><p><?php print $mission ?></p></div><?php } ?>
|
| 48 |
<?php print $help ?>
|
| 49 |
<?php print $messages ?>
|
| 50 |
|
| 51 |
<?php if ($title) { ?><h1 class="title"><?php print $title ?></h1><?php } ?>
|
| 52 |
<div class="tabs"><?php print $tabs ?>
|
| 53 |
</div>
|
| 54 |
<?php /* END LEFT COLUMN */ ?>
|
| 55 |
<?php print $content; ?>
|
| 56 |
<?php /* END MAIN CONTENT */ ?>
|
| 57 |
</div>
|
| 58 |
<?php /* RIGHT COLUMNS BEGINS */ ?>
|
| 59 |
<div id="secondary">
|
| 60 |
<?php if ($sidebar != "") { ?>
|
| 61 |
<?php print $sidebar ?>
|
| 62 |
<?php }; ?>
|
| 63 |
<?php /* END RIGHT COLUMN */ ?>
|
| 64 |
<?php /* RIGHT COLUMN CATEGORIES BEGIN */ ?>
|
| 65 |
<div id="secondary1">
|
| 66 |
<div id="mainservices">
|
| 67 |
<?php if ($sidebar_left != "") { ?>
|
| 68 |
<?php print $sidebar_left ?>
|
| 69 |
</div>
|
| 70 |
<?php }; ?>
|
| 71 |
</div>
|
| 72 |
<?php /* FAR RIGHT COLUMN BEGINS */ ?>
|
| 73 |
<?php if ($sidebar_right != "") { ?>
|
| 74 |
<div id="secondary2">
|
| 75 |
<div id="consumption">
|
| 76 |
<?php print $sidebar_right ?>
|
| 77 |
</div>
|
| 78 |
<?php }; ?>
|
| 79 |
|
| 80 |
<?php /* END FAR RIGHT COLUMN */ ?>
|
| 81 |
</div>
|
| 82 |
<?php /* END RIGHT COLUMN CATEGORIES */ ?>
|
| 83 |
</div>
|
| 84 |
<?php /* END MAIN CONTENT */ ?>
|
| 85 |
<?php /* FOOTER BEGINS */ ?>
|
| 86 |
</div>
|
| 87 |
<div class="footer" id="footer"><h6><?php print $footer_message ?> Designed by <a href="http://www.seoposition.com">SEO Position</a></h6></div>
|
| 88 |
<?php print $closure ?>
|
| 89 |
<?php /* END FOOTER */ ?>
|
| 90 |
</div>
|
| 91 |
<?php /* END CONTENT WRAPPER */ ?>
|
| 92 |
</body>
|
| 93 |
</html>
|