getThemeClass(); // Begin: page-specific settings. Change these. $pageTitle = "Solstice typography"; $Theme->setPageAuthor('Christopher Guindon'); $Theme->setPageKeywords('eclipse solstice'); $Theme->setPageTitle($pageTitle); require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); $Nav = new Nav(); $Nav->addNavSeparator("Related Links", ""); $Nav->addCustomNav("Documentation", "/eclipse.org-common/themes/solstice/docs/", "_self", 1); $Theme->setNav($Nav); // Place your html content in a file called content/en_pagename.php ob_start(); include ("content/en_" . $App->getScriptName()); $html = ob_get_clean(); $App->AddExtraHtmlHeader(''); $App->AddExtraHtmlHeader(''); $App->AddExtraHtmlHeader(''); $Theme->setHtml($html); $Theme->generatePage();