blob: cdad2cfb34e385fef3b969ee82d4b33d3ec3addc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
/**
* Elgg pageshell for the admin area
*
* @package Elgg
* @subpackage Core
*
* @uses $vars['title'] The page title
* @uses $vars['body'] The main content of the page
* @uses $vars['sysmessages'] A 2d array of various message registers, passed from system_messages()
*/
// Set the content type
header("Content-type: text/html; charset=UTF-8");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<?php echo elgg_view('page/elements/head', $vars); ?>
<body>
<div class="elgg-page elgg-page-admin">
<?php echo $vars['body']; ?>
</div>
</body>
</html>
|