updated .htaccess file to define include_path to prepend/append files are processed properly.
added installation instructions.
config-dist.php
added REPO_DIR to store constant for repository.
added site config information handoff to smarty display object for correct webpaths.
developers/*
developers index page along with accompanying template.
search.php
this will be the main search (placeholder).
git-svn-id: svn://10.0.0.236/trunk@175953 18797224-902f-48f8-a5cc-f745e15eee43
13 lines
228 B
PHP
13 lines
228 B
PHP
<?php
|
|
/**
|
|
* Developers index.
|
|
* @package amo
|
|
* @subpackage docs
|
|
*/
|
|
// Assign content template.
|
|
$smarty->assign('content','developers/index.tpl');
|
|
|
|
// Set custom wrapper for this page.
|
|
$wrapper = 'inc/wrappers/nonav.tpl';
|
|
?>
|