| <?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("../_projectCommon.php"); # All on the same line to unclutter the user's desktop' | |
| $pageTitle = "This is how you do something interesting..."; | |
| ob_start(); | |
| ?> | |
| <div id="maincontent"> | |
| <div id="midcolumn"> | |
| <h1><?=$pageTitle;?></h1> | |
| <div style="float: right; border: 1px dashed black; | |
| background-color: #FFFFDD;"><table><tr><td width="150px">See | |
| <a href="development_process.php#6_2_1_Pre-Proposal">SOMETHING COOL HERE</a> | |
| with how things are done.</td> | |
| </tr></table></div> | |
| <blockquote><em>Something important. | |
| </em></blockquote> | |
| <h2>Here are the steps</h2> | |
| <p>Yupe, here are the steps. | |
| <ul> | |
| <li>step 1</li> | |
| </ul> | |
| </p> | |
| </div> <!-- midcolumn --> | |
| </div> <!-- maincontent --> | |
| <?php | |
| # Paste your HTML content between the EOHTML markers! | |
| $html = ob_get_contents(); | |
| ob_end_clean(); | |
| # Generate the web page | |
| $App->generatePage(NULL, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); | |
| ?> |