first import
[projectpier.git] / application / layouts / complete_install.php
blobf30541230c7e22db82031d26b18846d20b77e909
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
2 <html>
3 <head>
4 <title><?php echo get_page_title() ?></title>
5 <?php echo stylesheet_tag('complete_install.css') ?>
6 <?php echo meta_tag('content-type', 'text/html; charset=utf-8', true) ?>
7 <link rel="Shortcut Icon" href="favicon.ico" type="image/x-icon" />
8 <?php echo render_page_head() ?>
9 </head>
10 <body>
11 <div id="dialog">
12 <h1><?php echo get_page_title() ?></h1>
13 <?php if(!is_null(flash_get('success'))) { ?>
14 <div id="success" onclick="this.style.display = 'none'"><?php echo clean(flash_get('success')) ?></div>
15 <?php } ?>
16 <?php if(!is_null(flash_get('error'))) { ?>
17 <div id="error" onclick="this.style.display = 'none'"><?php echo clean(flash_get('error')) ?></div>
18 <?php } ?>
19 <?php echo $content_for_layout ?>
20 </div>
21 </body>
22 </html>