| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
|
| 5 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 6 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language; ?>" xml:lang="<?php print $language->language; ?>">
|
| 7 |
|
| 8 |
<head>
|
| 9 |
<title><?php print $head_title; ?></title>
|
| 10 |
<?php print $head; ?>
|
| 11 |
<?php print $styles; ?>
|
| 12 |
<!--[if IE 7]>
|
| 13 |
<link rel="stylesheet" href="<?php print $base_path . $directory; ?>/ie7-fixes.css" type="text/css">
|
| 14 |
<![endif]-->
|
| 15 |
<!--[if lte IE 6]>
|
| 16 |
<link rel="stylesheet" href="<?php print $base_path . $directory; ?>/ie6-fixes.css" type="text/css">
|
| 17 |
<![endif]-->
|
| 18 |
<?php print $scripts; ?>
|
| 19 |
</head>
|
| 20 |
|
| 21 |
<body class="<?php print $body_classes; ?>">
|
| 22 |
<div id="page" class="clearfix">
|
| 23 |
<div id="header-wrapper" class="clearfix">
|
| 24 |
<div id="header-first">
|
| 25 |
<?php if ($logo): ?>
|
| 26 |
<div id="logo">
|
| 27 |
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a>
|
| 28 |
</div>
|
| 29 |
<?php endif; ?>
|
| 30 |
<?php if ($site_name): ?>
|
| 31 |
<h1><a href="<?php print $base_path ?>" title="<?php print t('Home'); ?>"><?php print $site_name; ?></a></h1>
|
| 32 |
<?php endif; ?>
|
| 33 |
<?php if ($site_slogan): ?>
|
| 34 |
<span id="slogan"><?php print $site_slogan; ?></span>
|
| 35 |
<?php endif; ?>
|
| 36 |
</div><!-- /header-first -->
|
| 37 |
</div><!-- /header-wrapper -->
|
| 38 |
<div id="main-wrapper" class="clearfix">
|
| 39 |
<div id="content-wrapper">
|
| 40 |
<div id="content">
|
| 41 |
<?php if ($tabs): ?>
|
| 42 |
<div id="content-tabs" class="clear">
|
| 43 |
<?php print $tabs; ?>
|
| 44 |
</div>
|
| 45 |
<?php endif; ?>
|
| 46 |
<?php if ($content || $title): ?>
|
| 47 |
<div id="content-inner" class="clear">
|
| 48 |
<?php if ($title): ?>
|
| 49 |
<h1 class="title"><?php print $title; ?></h1>
|
| 50 |
<?php endif; ?>
|
| 51 |
<?php if ($content): ?>
|
| 52 |
<?php print $content; ?>
|
| 53 |
<?php endif; ?>
|
| 54 |
</div>
|
| 55 |
<?php endif; ?>
|
| 56 |
</div><!-- /content -->
|
| 57 |
</div><!-- /content-wrapper -->
|
| 58 |
</div><!-- /main-wrapper -->
|
| 59 |
</div><!-- /page -->
|
| 60 |
</body>
|
| 61 |
</html>
|