1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- header('Content-type: text/html; charset=utf-8');
- ?>
- <!DOCTYPE html>
- <html>
- <head>
- <title><?php echo $vars['title']; ?></title>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <style type="text/css">
- body {
- text-align:left;
- margin:0;
- padding:0;
- background:
- font: 80%/1.5 "Lucida Grande", Verdana, sans-serif;
- color:
- }
- p {
- margin: 0px 0px 15px 0;
- }
-
- background:white;
- width:570px;
- margin:auto;
- padding:10px 40px;
- margin-bottom:40px;
- margin-top:20px;
- border-right: 1px solid
- border-bottom: 1px solid
- }
- .elgg-messages-exception {
- background:
- display:block;
- padding:10px;
- }
- </style>
- </head>
- <body>
- <div id="elgg-wrapper">
- <h1><?php echo $vars['title']; ?></h1>
- <?php echo $vars['body']; ?>
- </div>
- </body>
- </html>
|