mike.morgan%oregonstate.edu d496eb2529 Caching touch-up.
git-svn-id: svn://10.0.0.236/trunk@190638 18797224-902f-48f8-a5cc-f745e15eee43
2006-02-21 01:15:40 +00:00

32 lines
697 B
PHP

<?php
/**
* Policy page.
*
* @package amo
* @subpackage docs
*
* @todo talk to cbeard and rebron about establishing the policy document.
*/
startProcessing('policy.tpl','policy',$compileId);
require_once('includes.php');
$links = array(
array( 'href' => './faq.php',
'title' => 'Frequently Asked Questions',
'text' => 'FAQ'),
array( 'href' => './policy.php',
'title' => 'Addons Policies',
'text' => 'Policy')
);
// Send FAQ data to Smarty object.
$tpl->assign(
array( 'links' => $links,
'sidebar' => 'inc/nav.tpl',
'content' => 'policy.tpl',
'title' => 'Policy')
);
?>