blob: fc7bf3aa7c1e3ccb6b3926b3d9667e4ab5ccb4dd [file] [log] [blame]
<?php
require_once ($_SERVER ['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");
require_once ($_SERVER ['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
require_once ($_SERVER ['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php");
$App = new App ();
$Nav = new Nav ();
$Menu = new Menu ();
include ($App->getProjectCommon()); // All on the same line to unclutter the user's desktop'
$pageTitle = "Eclipse Planning Council";
$pageKeywords = "Eclipse Planning Council";
$pageAuthor = "David Williams";
// Paste your HTML content between the markers!
ob_start ();
include("content/en_" . $App->getScriptName());
$html = ob_get_clean();
// Generate the web page
$App->generatePage ('solstice', $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);