blob: 9d97ddc3527ddbce0f7aacd8681b76ba9a6e6648 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
/**
* Profile info box
*/
?>
<div class="profile">
<?php
echo elgg_view('profile/sidebar');
echo elgg_view('profile/details', array('entity' => elgg_get_page_owner()));
?>
</div>
|