| 1 |
<?php
|
| 2 |
// $Id: page.tpl.php,v 1.18 2008/01/24 09:42:53 goba Exp $
|
| 3 |
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
| 4 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 5 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 6 |
<head>
|
| 7 |
<title><?php print $head_title ?></title>
|
| 8 |
<?php print $head ?>
|
| 9 |
<?php print $styles ?>
|
| 10 |
<?php print $scripts ?>
|
| 11 |
<!--[if lt IE 7]>
|
| 12 |
<?php print phptemplate_get_ie_styles(); ?>
|
| 13 |
<![endif]-->
|
| 14 |
</head>
|
| 15 |
<body<?php print phptemplate_body_class($left, $right); ?>>
|
| 16 |
<div class="Wraper">
|
| 17 |
<div class="Maincontiner">
|
| 18 |
<div class="Headerwraper">
|
| 19 |
<div class="Rightlinkswraper">
|
| 20 |
<?php if (isset($primary_links)) : ?>
|
| 21 |
<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
|
| 22 |
<?php endif; ?>
|
| 23 |
</div>
|
| 24 |
<div class="Logowraper"><?php if ($site_name) { ?><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a><?php } ?></div>
|
| 25 |
</div>
|
| 26 |
<div class="Midalwraper">
|
| 27 |
<div class="Midalcontiner">
|
| 28 |
<div class="Midalcontiner1">
|
| 29 |
<?php if ($left): ?>
|
| 30 |
<div id="sidebar-left" class="sidebar">
|
| 31 |
<?php print $left ?>
|
| 32 |
</div>
|
| 33 |
<?php endif; ?>
|
| 34 |
|
| 35 |
<div id="center"><div id="squeeze">
|
| 36 |
<?php print $breadcrumb; ?>
|
| 37 |
<?php if ($mission): print '<div id="mission">'. $mission .'</div>'; endif; ?>
|
| 38 |
<?php if ($tabs): print '<div id="tabs-wrapper" class="clear-block">'; endif; ?>
|
| 39 |
<?php if ($title): print '<h2'. ($tabs ? ' class="with-tabs title"' : ' class="title"') .'>'. $title .'</h2>'; endif; ?>
|
| 40 |
<?php if ($tabs): print '<ul class="tabs primary">'. $tabs .'</ul></div>'; endif; ?>
|
| 41 |
<?php if ($tabs2): print '<ul class="tabs secondary">'. $tabs2 .'</ul>'; endif; ?>
|
| 42 |
<?php if ($show_messages && $messages): print $messages; endif; ?>
|
| 43 |
<?php print $help; ?>
|
| 44 |
<div class="clear-block">
|
| 45 |
<?php print $content ?>
|
| 46 |
</div>
|
| 47 |
<?php print $feed_icons ?>
|
| 48 |
|
| 49 |
</div></div> <!-- /.left-corner, /.right-corner, /#squeeze, /#center -->
|
| 50 |
|
| 51 |
<?php if ($right): ?>
|
| 52 |
<div id="sidebar-right" class="sidebar">
|
| 53 |
<?php print $right ?>
|
| 54 |
</div>
|
| 55 |
<?php endif; ?>
|
| 56 |
</div>
|
| 57 |
</div>
|
| 58 |
<div class="Footerwraper">
|
| 59 |
<div class="footer-content"><?php print $footer_message . $footer ?></div>
|
| 60 |
<div class="Footerbottomlinks">
|
| 61 |
<div class="Footerrightcontiner"><img src="<?php print base_path(). path_to_theme() ?>/images/leftcor.jpg" alt="img" width="18" height="38" /></div>
|
| 62 |
<div class="Footermidalcontiner">
|
| 63 |
<?php if (isset($primary_links)) : ?>
|
| 64 |
<?php print theme('links', $primary_links, array('class' => 'links primary-links')) ?>
|
| 65 |
<?php endif; ?>
|
| 66 |
</div>
|
| 67 |
<div class="Footerleftcontiner"><img src="<?php print base_path(). path_to_theme() ?>/images/leftconrner.jpg" alt="img" width="18" height="38" /></div>
|
| 68 |
</div>
|
| 69 |
<div class="Interface"><strong>Drupal Theme by InterFace </strong></div>
|
| 70 |
</div>
|
| 71 |
</div>
|
| 72 |
</div>
|
| 73 |
</div>
|
| 74 |
<?php print $closure ?>
|
| 75 |
</body>
|
| 76 |
</html>
|