Fixing a small css issue in the user class.
[elgg.git] / _templates / index.php
blobd41b05cba0bd1574f2b1c5511c7a08f51820e816
1 <?php
3 // ELGG template create / select page
5 // Run includes
6 require_once(dirname(dirname(__FILE__))."/includes.php");
8 protect(1);
10 run("profile:init");
11 templates_actions();
13 define("context", "account");
14 templates_page_setup();
15 $title = run("profile:display:name") . " :: ". __gettext("Select / Create Themes");
17 $body = templates_view();
18 $body .= templates_add();
20 $body = templates_draw(array(
21 'context' => 'contentholder',
22 'title' => $title,
23 'body' => $body
27 echo templates_page_draw( array(
28 $title, $body