| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
| 3 |
<head>
|
| 4 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
| 5 |
<title>
|
| 6 |
<?php print $head_title; ?>
|
| 7 |
</title>
|
| 8 |
<?php print $head; ?>
|
| 9 |
<?php print $styles; ?>
|
| 10 |
<?php print $scripts; ?>
|
| 11 |
<!--[if lte IE 6]>
|
| 12 |
<link href="<?php print $base_path . $directory; ?>/css/template_ie.css" rel="stylesheet" type="text/css" />
|
| 13 |
<![endif]-->
|
| 14 |
|
| 15 |
</head>
|
| 16 |
<body id="page_bg">
|
| 17 |
<div id="header">
|
| 18 |
<?php if ($logo): ?>
|
| 19 |
<a href="<?php print $base_path; ?>" title="<?php print t('Home'); ?>">
|
| 20 |
<img src="<?php print $logo; ?>" alt="<?php print t('Home'); ?>" id="logo" />
|
| 21 |
</a>
|
| 22 |
<?php endif; ?>
|
| 23 |
<?php if ($site_name) { ?><div id="siteName"><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></div><?php } ?>
|
| 24 |
<div id="top">
|
| 25 |
<div class="padding">
|
| 26 |
<?php if ($header): ?>
|
| 27 |
<div id="header_block" class="header">
|
| 28 |
<?php print $header; ?>
|
| 29 |
</div> <!-- /header -->
|
| 30 |
<?php endif; ?>
|
| 31 |
</div>
|
| 32 |
</div>
|
| 33 |
</div>
|
| 34 |
<div id="horiz-menu">
|
| 35 |
<div id="navigation" class="menu">
|
| 36 |
<?php if (isset($primary_links)) : ?>
|
| 37 |
<div id="primary" class="clear-block">
|
| 38 |
<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
|
| 39 |
</div>
|
| 40 |
<?php endif; ?>
|
| 41 |
|
| 42 |
<?php if ($secondary_links): ?>
|
| 43 |
<div id="secondary" class="clear-block">
|
| 44 |
<?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
|
| 45 |
</div>
|
| 46 |
<?php endif; ?>
|
| 47 |
</div> <!-- /navigation -->
|
| 48 |
</div>
|
| 49 |
<div id="wrapper">
|
| 50 |
|
| 51 |
|
| 52 |
<div id="mainbody">
|
| 53 |
|
| 54 |
<div class="padding">
|
| 55 |
|
| 56 |
<div>
|
| 57 |
|
| 58 |
|
| 59 |
<div id="main" class="column"><div id="squeeze">
|
| 60 |
<div id="contentblock">
|
| 61 |
<?php if ($top_left): ?>
|
| 62 |
<div id="top_left" class="column sidebar">
|
| 63 |
<?php print $top_left; ?>
|
| 64 |
</div> <!-- /top_left -->
|
| 65 |
<?php endif; ?>
|
| 66 |
|
| 67 |
|
| 68 |
<?php if ($top_right): ?>
|
| 69 |
<div id="top_right" class="column sidebar">
|
| 70 |
<?php print $top_right; ?>
|
| 71 |
</div> <!-- /top_right -->
|
| 72 |
<?php endif; ?>
|
| 73 |
</div>
|
| 74 |
|
| 75 |
<?php if ($breadcrumb): ?>
|
| 76 |
<div id="bread">
|
| 77 |
<?php print $breadcrumb; ?>
|
| 78 |
</div>
|
| 79 |
<?php endif; ?>
|
| 80 |
|
| 81 |
<?php if ($content_top):?><div id="content-top"><?php print $content_top; ?></div><?php endif; ?>
|
| 82 |
<?php if ($title): ?><h1 class="title"><?php print $title; ?></h1><?php endif; ?>
|
| 83 |
<?php if ($tabs): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
|
| 84 |
<?php print $help; ?>
|
| 85 |
<?php print $messages; ?>
|
| 86 |
<?php print $content; ?>
|
| 87 |
<?php print $feed_icons; ?>
|
| 88 |
<?php if ($content_bottom): ?><div id="content-bottom"><?php print $content_bottom; ?></div><?php endif; ?>
|
| 89 |
</div></div> <!-- /squeeze /main -->
|
| 90 |
</div>
|
| 91 |
</div>
|
| 92 |
|
| 93 |
<div class="padding">
|
| 94 |
<div class="moduletable">
|
| 95 |
<?php if ($left || $right): ?>
|
| 96 |
<div id="sidebar-right" class="column sidebar">
|
| 97 |
<?php if ($left) { print $left; } ?>
|
| 98 |
<?php if ($right) { print $right; } ?>
|
| 99 |
</div> <!-- /sidebar-right -->
|
| 100 |
<?php endif; ?>
|
| 101 |
</div>
|
| 102 |
</div>
|
| 103 |
|
| 104 |
|
| 105 |
<div id="bottom">
|
| 106 |
|
| 107 |
<div class="node">
|
| 108 |
|
| 109 |
<?php if ($bottom_left): ?>
|
| 110 |
<div id="bottom_left" class="column sidebar">
|
| 111 |
<?php print $bottom_left; ?>
|
| 112 |
</div> <!-- /bottom_left -->
|
| 113 |
<?php endif; ?>
|
| 114 |
|
| 115 |
|
| 116 |
|
| 117 |
<?php if ($bottom_right): ?>
|
| 118 |
<div id="bottom_right" class="column sidebar">
|
| 119 |
<?php print $bottom_right; ?>
|
| 120 |
</div> <!-- /bottom_right -->
|
| 121 |
<?php endif; ?>
|
| 122 |
</div>
|
| 123 |
</div>
|
| 124 |
<div id="footer">
|
| 125 |
<p>Copyright infomation comes here Theme by <a href="http://drupal.org/user/198692">Rishikesh</a></p>
|
| 126 |
|
| 127 |
</div>
|
| 128 |
</div> <!-- 1189991641 -->
|
| 129 |
<?php print $closure ?>
|
| 130 |
</body>
|
| 131 |
</html>
|