mike.morgan%oregonstate.edu b8401a2ef8 Policy documents.
git-svn-id: svn://10.0.0.236/trunk@176516 18797224-902f-48f8-a5cc-f745e15eee43
2005-07-25 07:36:05 +00:00

26 lines
534 B
PHP

<?php
/**
* Policy page.
* @package amo
* @subpackage docs
*/
$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')
);
?>