| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
/**
|
| 4 |
* @file page.tpl.php
|
| 5 |
* Template for a very basic popup page
|
| 6 |
*/
|
| 7 |
?>
|
| 8 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
| 9 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 10 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 11 |
|
| 12 |
<head>
|
| 13 |
<?php print $head ?>
|
| 14 |
<title><?php print $head_title ?></title>
|
| 15 |
<?php print $styles ?>
|
| 16 |
<?php print $scripts ?>
|
| 17 |
<!--[if lt IE 7]>
|
| 18 |
<?php print phptemplate_get_ie_styles(); ?>
|
| 19 |
<![endif]-->
|
| 20 |
</head>
|
| 21 |
<body>
|
| 22 |
<div id="page">
|
| 23 |
<div id="content">
|
| 24 |
<?php if (!empty($title)): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
|
| 25 |
<?php if (!empty($messages)): print $messages; endif; ?>
|
| 26 |
<div id="content-content" class="clear-block">
|
| 27 |
<?php print $content; ?>
|
| 28 |
</div> <!-- /content-content -->
|
| 29 |
</div> <!-- /content -->
|
| 30 |
|
| 31 |
<?php print $closure; ?>
|
| 32 |
|
| 33 |
</div> <!-- /page -->
|
| 34 |
</body>
|
| 35 |
</html>
|