1
|
<?php
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
?>
|
7
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
8
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
9
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
10
|
|
11
|
<head>
|
12
|
<title><?php print $head_title; ?></title>
|
13
|
<?php print $head; ?>
|
14
|
<?php print $styles; ?>
|
15
|
<?php print $scripts; ?>
|
16
|
<script type="text/javascript"><?php ?> </script>
|
17
|
</head>
|
18
|
<body>
|
19
|
<div id="page">
|
20
|
<div id="header">
|
21
|
<?php if (!empty($search_box)): ?>
|
22
|
<div id="search-box"><?php print $search_box; ?></div>
|
23
|
<?php endif; ?>
|
24
|
</div>
|
25
|
<div id="breadcrumb"><?php print $breadcrumb; ?></div>
|
26
|
|
27
|
<div id="content">
|
28
|
<?php if (!empty($title)): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
|
29
|
<?php if (!empty($tabs)): ?><div class="tabs"><?php print $tabs; ?></div><?php endif; ?>
|
30
|
<?php if (!empty($messages)): print $messages; endif; ?>
|
31
|
<?php if (!empty($help)): print $help; endif; ?>
|
32
|
<div id="content-content" class="clear-block">
|
33
|
<?php print $content; ?>
|
34
|
</div>
|
35
|
</div>
|
36
|
|
37
|
<?php print $closure; ?>
|
38
|
|
39
|
</div>
|
40
|
</body>
|
41
|
</html>
|