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