18 lines
341 B
PHP
18 lines
341 B
PHP
<?php
|
|
/**
|
|
* Home page for extensions, switchable on application.
|
|
*
|
|
* @package amo
|
|
* @subpackage docs
|
|
*/
|
|
|
|
startProcessing('feeds.tpl', null, $compileId,'rustico');
|
|
require_once('includes.php');
|
|
|
|
// Assign template variables.
|
|
$tpl->assign(
|
|
array( 'title' => 'Feeds',
|
|
'content' => 'feeds.tpl')
|
|
);
|
|
?>
|