wysiwyg-dialog-page.tpl.php 942 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * @file
  4. * Theme implementation to display a single Wysiwyg (plugin) dialog page.
  5. */
  6. ?>
  7. <div id="page">
  8. <?php print $messages; ?>
  9. <div id="main-wrapper"><div id="main" class="clearfix">
  10. <div id="content" class="column"><div class="section">
  11. <a id="main-content"></a>
  12. <?php print render($title_prefix); ?>
  13. <?php if ($title): ?><h1 class="title" id="page-title"><?php print $title; ?></h1><?php endif; ?>
  14. <?php print render($title_suffix); ?>
  15. <?php if ($tabs): ?><div class="tabs"><?php print render($tabs); ?></div><?php endif; ?>
  16. <?php print render($page['help']); ?>
  17. <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
  18. <?php print render($page['content']); ?>
  19. </div></div> <!-- /.section, /#content -->
  20. </div></div> <!-- /#main, /#main-wrapper -->
  21. </div> <!-- /#page -->