You are here

page-dialog.tpl.php in jQuery UI filter 6

Template file for jQuery UI filter dialog.

This file needs to be copied into your theme directory. (optional)

File

dialog/page-dialog.tpl.php
View source
<?php

/**
 * @file
 * Template file for jQuery UI filter dialog.
 *
 * This file needs to be copied into your theme directory. (optional)
 */
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php

print $language->language;
?>" lang="<?php

print $language->language;
?>" dir="<?php

print $language->dir;
?>">

<head>
  <?php

print $head;
?>
  <title><?php

print $head_title;
?></title>
  <?php

print $styles;
?>
  <?php

print $scripts;
?>
</head>
<body class="<?php

print $body_classes;
?> dialog">

<div id="content" class="column"><div class="section">

  <?php

print $messages;
?>
  <?php

if ($tabs) {
  ?>
    <div class="clear-block"><ul class="tabs primary"><?php

  print $tabs;
  ?></ul></div>
  <?php

}
?>
  <?php

print $help;
?>

  <div id="content-area">
    <?php

print $content;
?>
  </div>

</div></div><!-- /.section, /#content -->

<?php

print $closure;
?>

</body>
</html>