| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language; ?>" lang="<?php print $language->language; ?>" dir="<?php print $language->dir; ?>"> |
| 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 |
<body class="<?php print $body_classes; ?>" id="mainbody" > |
|
|
|
|
<?php |
|
|
if ($is_front) |
|
|
echo "class='front'"; |
|
|
else |
|
|
echo "class='not-front'"; |
|
|
?> |
|
|
|
|
|
id="mainbody" > |
|
| 13 |
|
|
| 14 |
<div id="container"> |
<div id="container"> |
| 15 |
|
|
| 78 |
|
|
| 79 |
<div id="sidebars"> |
<div id="sidebars"> |
| 80 |
|
|
| 81 |
<?php if ($sidebar_left): ?> |
<?php if ($left): ?> |
| 82 |
<div id="left"> |
<div id="left"> |
| 83 |
<?php print $sidebar_left ?> |
<?php print $left ?> |
| 84 |
</div> |
</div> |
| 85 |
<?php endif;?> |
<?php endif;?> |
| 86 |
|
|
| 87 |
<?php if ($sidebar_right): ?> |
<?php if ($right): ?> |
| 88 |
<div id="right"> |
<div id="right"> |
| 89 |
<?php print $sidebar_right ?> |
<?php print $right ?> |
| 90 |
</div> |
</div> |
| 91 |
<?php endif;?> |
<?php endif;?> |
| 92 |
<br style="clear:both;" /> |
<br style="clear:both;" /> |