aboutsummaryrefslogtreecommitdiff
path: root/views/default/page_elements/content.php
blob: ec0c3ec33f1f6a221e8804523408ae510003a37f (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
/**
 * Elgg content wrapper
 * This file holds the main content
 **/

$content = isset($vars['body']) ? $vars['body'] : '';

echo '<div class="elgg-body">';
echo $content;
echo '</div>';