blob: f7da3f3fb550a7169bfdc01c787f4b904b8d41c2 [file] [log] [blame]
mchapman637802b2006-10-26 14:08:11 +00001<?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'
2
3 #*****************************************************************************
4 #
5 # template.php
6 #
7 # Author: Denis Roy
8 # Date: 2005-06-16
9 #
10 # Description: Type your page comments here - these are not sent to the browser
11 #
12 #
13 #****************************************************************************
14
15 #
16 # Begin: page-specific settings. Change these.
17 $pageTitle = "The AspectJ Project";
18 $pageKeywords = "AspectJ, AJDT, Aspect Oriented Software Development, Eclipse";
19 $pageAuthor = "Type your name here";
20
21 # Add page-specific Nav bars here
22 # Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
23 # $Nav->addNavSeparator("My Page Links", "downloads.php");
24 # $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
25 # $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
26
27 # End: page-specific settings
28
29 # Paste your HTML content between the EOHTML markers!
30 $html = <<<EOHTML
31
32<div id="maincontent">
33 <div id="midcolumn" style="width: 80%">
34
35 <h1></h1>
36
37 </div>
38
39</div>
40
41
42EOHTML;
43
44
45 # Generate the web page
46 $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
47?>