Created a new folder in _templates to house site icons. Put the new RSS standard...
[elgg.git] / _rss / individual.php
blob343f3570b7df6d015372d3eaab42549162197be1
1 <?php
3 require_once(dirname(dirname(__FILE__))."/includes.php");
5 run("weblogs:init");
6 run("profile:init");
7 run("rss:init");
9 define('context','resources');
10 global $page_owner;
12 $feed = optional_param('feed',-1,PARAM_INT);
13 $title = gettext("Feed detail");
14 templates_page_setup();
15 run("rss:update",$feed);
16 $body = run("rss:view:feed",$feed);
18 $body = templates_draw(array(
19 'context' => 'contentholder',
20 'title' => $title,
21 'body' => $body
25 echo templates_page_draw( array(
26 $title, $body