blob: 93bdca6b54b928f8dec83687603d9644b4a38333 [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'
#*****************************************************************************
#
# template.php
#
# Author: Denis Roy
# Date: 2005-06-16
#
# Description: Type your page comments here - these are not sent to the browser
#
#
#****************************************************************************
#
# Begin: page-specific settings. Change these.
$pageTitle = "Europa Webinars";
$pageKeywords = "";
$pageAuthor = "Ian Skerrett";
# Add page-specific Nav bars here
# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
# $Nav->addNavSeparator("My Page Links", "downloads.php");
# $Nav->addCustomNav("My Link", "mypage.php", "_self", 1);
# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 1);
# End: page-specific settings
#
// This file is linked to from lots of different places.
// Use absolute paths to make sure that we can actually test
// that the file renders properly (i.e. testing using) "/index.php",
// and "/home/index.php" both work.
# Paste your HTML content between the EOHTML markers!
$html = <<<EOHTML
<div id="maincontent">
<div id="midcolumn">
<h1>$pageTitle</h1>
<p>Looking to learn more about the different projects involved in Europa? We are running a series of free
webinars to help you better understand how you can use the different Eclipse projects. Take a look below
and sign-up today.</p>
<h2>Webinar Title</h2>
<a href="#">Webinar Recording</a>
<p>
<ul>
<li><p> Presenters: </p></li>
<li><p>Morbi ut turpis vitae diam tempus gravida. Suspendisse faucibus justo at quam. Praesent nulla tortor, lacinia at, elementum et, semper vitae, elit. Praesent tincidunt pellentesque dui. Proin vel nisi eget neque vehicula consectetuer. Duis est. Integer fringilla lorem id odio. Praesent eget dolor. Aenean et magna.</p>
</ul>
</p>
</div>
</div>
EOHTML;
# Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>