Created a new folder in _templates to house site icons. Put the new RSS standard...
[elgg.git] / search / tags.php
blob52e23d269ae01330133230c549532189a4ec8dc2
1 <?php
3 // ELGG display popular tags page
5 // Run includes
6 require_once(dirname(dirname(__FILE__))."/includes.php");
8 run("search:init");
10 $title = gettext("Some Tags");
11 templates_page_setup();
12 $body = run("content:tags");
13 $body .= run("search:tags:display");
15 $body = templates_draw(array(
16 'context' => 'contentholder',
17 'title' => $title,
18 'body' => $body
22 echo templates_page_draw( array(
23 $title, $body