| 1 |
<?php
|
| 2 |
// $Id: page.tpl.php,v 1.1 2008/12/02 14:06:26 neerjasoftwares Exp $
|
| 3 |
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 4 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 5 |
|
| 6 |
<head>
|
| 7 |
<title><?php print $head_title ?></title>
|
| 8 |
<?php print $head ?>
|
| 9 |
<?php print $styles ?>
|
| 10 |
<?php print $scripts ?>
|
| 11 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 12 |
</head>
|
| 13 |
|
| 14 |
<body>
|
| 15 |
<div id="maintopPan">
|
| 16 |
<div id="maintopPanOne">
|
| 17 |
<div id="topHeaderPan">
|
| 18 |
<?php if ($logo) { ?><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
|
| 19 |
</div>
|
| 20 |
<div id="topSidemenuPan">
|
| 21 |
<ul>
|
| 22 |
<li class="home"><a href="#">Home</a></li>
|
| 23 |
<li class="contact"><a href="#">Contact</a></li>
|
| 24 |
</ul>
|
| 25 |
</div>
|
| 26 |
</div>
|
| 27 |
|
| 28 |
</div>
|
| 29 |
|
| 30 |
<div id="bodyPan">
|
| 31 |
<div id="leftPan">
|
| 32 |
<div class="primmenu"><?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?></div>
|
| 33 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 34 |
<div id="main">
|
| 35 |
<?php print $breadcrumb ?>
|
| 36 |
<h1 class="title"><?php print $title ?></h1>
|
| 37 |
<div class="tabs"><?php print $tabs ?></div>
|
| 38 |
<?php if ($show_messages) { print $messages; } ?>
|
| 39 |
<?php print $help ?>
|
| 40 |
<?php print $content; ?>
|
| 41 |
<?php print $feed_icons; ?>
|
| 42 |
</div>
|
| 43 |
</div>
|
| 44 |
<div id="rightPan">
|
| 45 |
<div id="rightbottomPan">
|
| 46 |
<?php print $left ?>
|
| 47 |
</div>
|
| 48 |
</div>
|
| 49 |
</div>
|
| 50 |
<div id="footermainPan">
|
| 51 |
<div id="footerPan">
|
| 52 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'subnavlist')) ?><?php } ?>
|
| 53 |
<div class="footerlink">
|
| 54 |
<div class="designby"><ul><li>Design By - <a href="http://www.templateworld.com">Template World</a></li>
|
| 55 |
</ul></div>
|
| 56 |
<div class="designby3"><ul><li>Drupal Theme By - <a href="http://www.neerjasoftwares.com">Neerjasoftware</a></li>
|
| 57 |
</ul></div>
|
| 58 |
<p class="copyright"><?php print $footer_message ?></p>
|
| 59 |
</div>
|
| 60 |
</div>
|
| 61 |
</div>
|
| 62 |
<?php print $closure ?>
|
| 63 |
</body>
|
| 64 |
</html>
|