| <?php |
| |
| # Set the theme for your project's web pages. |
| # See the Committer Tools "How Do I" for list of themes |
| # https://dev.eclipse.org/committers/ |
| # Optional: defaults to system theme |
| $theme = "Nova"; |
| |
| # Define your project-wide Nav bars here. |
| # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3) |
| # these are optional |
| $Nav->addNavSeparator("Project Home", "index.php"); |
| $Nav->addCustomNav("Downloads", "downloads.php", "_self", 2); |
| $Nav->addCustomNav("Installation", "install.php", "_self", 2); |
| |
| # Define your project-wide Nav bars here. |
| # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3) |
| # these are optional |
| $Nav->setLinkList(array()); |
| $Nav->addNavSeparator("AMP", "/amp"); |
| $Nav->addCustomNav("Download", "/amp/download", "_self", 3); |
| $Nav->addCustomNav("Documentation", "/amp/documentation", "_blank", 3); |
| $Nav->addCustomNav("Support", "/amp/support", "_blank", 3); |
| $Nav->addCustomNav("Getting Involved", "/amp/developers", "_blank", 3); |
| |
| $pageTitle = "AMP"; |
| $pageKeywords = "abm,amp,agent-based modeling,emf,amf,mdsd"; |
| $pageAuthor = "Miles Parker"; |
| |
| $Menu->setMenuItemList(array()); |
| $Menu->addMenuItem("Home", "/amp", "_self"); |
| $Menu->addMenuItem("Download", "/amp/download", "_self"); |
| $Menu->addMenuItem("Documentation", "/amp/documentation", "_self"); |
| $Menu->addMenuItem("Support", "/amp/support", "_self"); |
| $Menu->addMenuItem("Developers", "/amp/developers", "_self"); |
| |
| $App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/amp/style.css"/>' . "\n\t"); |
| $App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="style2.css"/>' . "\n\t"); |
| |
| $App->Promotion = TRUE; |
| |
| |
| |
| ?> |
| <link rel=stylesheet type="text/css" href="/amp/style.css"> |