1
|
<div id="overlay" <?php print $attributes; ?>>
|
2
|
<div id="overlay-titlebar" class="clearfix">
|
3
|
<div id="overlay-title-wrapper" class="clearfix">
|
4
|
<h1 id="overlay-title"<?php print $title_attributes; ?>><?php print $title; ?></h1>
|
5
|
</div>
|
6
|
<div id="overlay-close-wrapper">
|
7
|
<a id="overlay-close" href="#" class="overlay-close"><span class="element-invisible"><?php print t('Close overlay'); ?></span></a>
|
8
|
</div>
|
9
|
<?php if ($tabs): ?><h2 class="element-invisible"><?php print t('Primary tabs'); ?></h2><ul id="overlay-tabs"><?php print render($tabs); ?></ul><?php endif; ?>
|
10
|
</div>
|
11
|
<div id="overlay-content"<?php print $content_attributes; ?>>
|
12
|
<?php print $page; ?>
|
13
|
</div>
|
14
|
</div>
|