| 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 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>"> |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>"> |
| 3 |
|
|
| 4 |
<head> |
<head> |
| 5 |
<title><?php print $head_title ?></title> |
<title><?php print $head_title ?></title> |
| 10 |
</head> |
</head> |
| 11 |
|
|
| 12 |
<body id="<?php if ($is_front) { print 'home'; } else { print 'second'; } ?>"> |
<body id="<?php if ($is_front) { print 'home'; } else { print 'second'; } ?>"> |
| 13 |
<div id="page" class="<?php if ($sidebar_left || $sidebar_right) { print "one-sidebar"; } if ($sidebar_right && $sidebar_left) { print " two-sidebars"; }?>"> |
<div id="page" class="<?php if ($left || $right) { print "one-sidebar"; } if ($right && $left) { print " two-sidebars"; }?>"> |
| 14 |
|
|
| 15 |
<div id="header"> |
<div id="header"> |
| 16 |
|
|
| 61 |
|
|
| 62 |
</div> |
</div> |
| 63 |
|
|
| 64 |
<div id="container" class="<?php if ($sidebar_left) { print "withleft"; } if ($sidebar_right) { print " withright"; }?> "> |
<div id="container" class="<?php if ($left) { print "withleft"; } if ($right) { print " withright"; }?> clear-block"> |
| 65 |
|
|
| 66 |
<div id="main-wrapper"> |
<div id="main-wrapper"> |
| 67 |
<div id="main" class="clear-block"> |
<div id="main" class="clear-block"> |
| 77 |
</div> |
</div> |
| 78 |
</div> |
</div> |
| 79 |
|
|
| 80 |
<?php if ($sidebar_left): ?> |
<?php if ($left): ?> |
| 81 |
<div id="sidebar-left" class="sidebar"> |
<div id="sidebar-left" class="sidebar"> |
| 82 |
<?php print $search_box ?> |
<?php print $search_box ?> |
| 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="sidebar-right" class="sidebar"> |
<div id="sidebar-right" class="sidebar"> |
| 89 |
<?php print $sidebar_right ?> |
<?php print $right ?> |
| 90 |
</div> |
</div> |
| 91 |
<?php endif; ?> |
<?php endif; ?> |
| 92 |
|
|