blob: 9462378281d90b5f307fcdaf7898436a31be50ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<?php
/**
* Elgg content wrapper
* This file holds the main content
*/
$body = elgg_get_array_value('body', $vars, '');
echo <<<HTML
<div id="elgg-page-body" class="elgg-body">
<div id="elgg_page-body-inner" class="elgg-inner elgg-center elgg-width-classic clearfix">
$body
</div>
</div>
HTML;
|