| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
<!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" xml:lang="<?php print $language->language; ?>" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
| 3 |
|
|
| 4 |
<head> |
<head> |
| 5 |
<title><?php print $head_title; ?></title> |
<title><?php print $head_title; ?></title> |
| 9 |
<?php print $scripts; ?> |
<?php print $scripts; ?> |
| 10 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script> |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyled Content in IE */ ?> </script> |
| 11 |
</head> |
</head> |
| 12 |
<body class="<?php print $body_classes; ?>" id="mainbody" > |
<body |
| 13 |
|
|
| 14 |
|
<?php |
| 15 |
|
if ($is_front) |
| 16 |
|
echo "class='front'"; |
| 17 |
|
else |
| 18 |
|
echo "class='not-front'"; |
| 19 |
|
?> |
| 20 |
|
|
| 21 |
|
id="mainbody" > |
| 22 |
|
|
| 23 |
<div id="container"> |
<div id="container"> |
| 24 |
|
|
| 87 |
|
|
| 88 |
<div id="sidebars"> |
<div id="sidebars"> |
| 89 |
|
|
| 90 |
<?php if ($left): ?> |
<?php if ($sidebar_left): ?> |
| 91 |
<div id="left"> |
<div id="left"> |
| 92 |
<?php print $left ?> |
<?php print $sidebar_left ?> |
| 93 |
</div> |
</div> |
| 94 |
<?php endif;?> |
<?php endif;?> |
| 95 |
|
|
| 96 |
<?php if ($right): ?> |
<?php if ($sidebar_right): ?> |
| 97 |
<div id="right"> |
<div id="right"> |
| 98 |
<?php print $right ?> |
<?php print $sidebar_right ?> |
| 99 |
</div> |
</div> |
| 100 |
<?php endif;?> |
<?php endif;?> |
| 101 |
<br style="clear:both;" /> |
<br style="clear:both;" /> |