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