| 1 |
<?php // $Id: page.tpl.php,v 1.14 2008/02/25 16:07:19 m3avrck Exp $ ?>
|
| 2 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
| 3 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 4 |
|
| 5 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language ?>" lang="<?php print $language ?>">
|
| 6 |
<head>
|
| 7 |
<title><?php print $head_title ?><?php if ($site_slogan != '' && !$is_front) print ' – '. $site_slogan; ?></title>
|
| 8 |
<meta http-equiv="content-language" content="<?php print $language ?>" />
|
| 9 |
<?php print $meta; ?>
|
| 10 |
<?php print $head; ?>
|
| 11 |
<?php print $styles; ?>
|
| 12 |
<!--[if lte IE 7]>
|
| 13 |
<link rel="stylesheet" href="<?php print $path; ?>blueprint/blueprint/ie.css" type="text/css" media="screen, projection">
|
| 14 |
<link href="<?php print $path; ?>css/ie.css" rel="stylesheet" type="text/css" media="screen, projection" />
|
| 15 |
<![endif]-->
|
| 16 |
<!--[if lte IE 6]>
|
| 17 |
<link href="<?php print $path; ?>css/ie6.css" rel="stylesheet" type="text/css" media="screen, projection" />
|
| 18 |
<![endif]-->
|
| 19 |
</head>
|
| 20 |
|
| 21 |
<body class="<?php print $body_class; ?>">
|
| 22 |
|
| 23 |
<div class="container">
|
| 24 |
<h1 id="logo">
|
| 25 |
<a title="<?php print $site_name; ?><?php if ($site_slogan != '') print ' – '. $site_slogan; ?>" href="<?php print url(); ?>"><?php print $site_name; ?><?php if ($site_slogan != '') print ' – '. $site_slogan; ?></a>
|
| 26 |
</h1>
|
| 27 |
|
| 28 |
<?php print $left; ?>
|
| 29 |
|
| 30 |
<div class="<?php print $center; ?>">
|
| 31 |
<?php
|
| 32 |
if ($breadcrumb != '') {
|
| 33 |
print $breadcrumb;
|
| 34 |
}
|
| 35 |
|
| 36 |
if ($tabs != '') {
|
| 37 |
print '<div class="tabs">'. $tabs .'</div>';
|
| 38 |
}
|
| 39 |
|
| 40 |
if ($messages != '') {
|
| 41 |
print '<div id="messages">'. $messages .'</div>';
|
| 42 |
}
|
| 43 |
|
| 44 |
if ($title != '') {
|
| 45 |
print '<h2>'. $title .'</h2>';
|
| 46 |
}
|
| 47 |
|
| 48 |
print $help; // Drupal already wraps this one in a class
|
| 49 |
|
| 50 |
print $content;
|
| 51 |
print $feed_icons;
|
| 52 |
?>
|
| 53 |
|
| 54 |
<?php if ($footer_message != ''): ?>
|
| 55 |
<div id="footer"><?php print $footer_message; ?></div>
|
| 56 |
<?php endif; ?>
|
| 57 |
</div>
|
| 58 |
|
| 59 |
<?php print $right; ?>
|
| 60 |
|
| 61 |
<?php print $scripts ?>
|
| 62 |
<?php print $closure; ?>
|
| 63 |
|
| 64 |
</div>
|
| 65 |
|
| 66 |
</body>
|
| 67 |
</html>
|