blob: 6732a80208d8718ace55976f95759bf716d14996 [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());
// Begin: page-specific settings. Change these.
$pageTitle = "Eclipse Logos and Artwork";
$pageKeywords = "eclipse, logo, eclipse logo, eclipse logos, artwork, logo, logos, trademark, trademarks, documents, about";
$pageAuthor = "Christopher Guindon";
ob_start();
?>
<div id="maincontent">
<div id="midcolumn">
<img src="images/layout/logo_header-345x82.gif" alt="Eclipse logo" id="eclipse-logo-header"/>
<div id="eclipse_logo_artworks">
<div id="eclipse_logo_artworks_info">
<h2>Eclipse Logo and Artworks
<span>For members and providers</span>
</h2>
<p>In order to help identify how Eclipse is incorporated into the projects and products developed by the community and
Foundation members, the "Eclipse Ready" "Built on Eclipse" and "Eclipse Foundation Member" logos can be downloaded here.
For information about how these logos are to be used, please consult the <a href="#">Usage Guidelines</a>. Each logo is available in a
variety of styles and sizes from the links below.</p>
</div>
<div id="eclipse_logo_artworks_logo" class="clearfix">
<div id="eclipse_logo_artworks_logo_normal" class="col-50">
<div class="logo-container">
<img src="images/v2/eclipse-logo-color-187x45.gif" alt="Eclipse color logo"/>
</div>
<a href="#" class="download-btn">Download</a>
</div>
<div id="eclipse_logo_artworks_logo_bw" class="col-50 main-logo-contrast">
<div class="logo-container">
<img src="images/v2/eclipse-logo-bw-187x45.png" alt="Eclipse black &amp; white logo"/>
</div>
<a href="#" class="download-btn">Download</a>
</div>
</div><!-- END #eclipse_logo_artworks_logo -->
<div id="eclipse_logo_artworks_mp" class="clearfix">
<div id="eclipse_logo_artworks_mp_built" class="col-33">
<img src="images/v2/eclipse-mp-built-130x52.gif"" alt="Eclipse - Built on"/>
<a href="#" class="download-btn">Download</a>
</div>
<div id="eclipse_logo_artworks_mp_ready" class="col-33">
<img src="images/v2/eclipse-mp-ready-130x52.gif" alt="Eclipse - Ready"/>
<a href="#" class="download-btn">Download</a>
</div>
<div id="eclipse_logo_artworks_mp_member" class="col-33">
<img src="images/v2/eclipse-mp-member-130x52.gif" alt="Eclipse - Foundation member"/>
<a href="#" class="download-btn">Download</a>
</div>
</div><!-- END #eclipse_logo_artworks_mp -->
</div>
<div id="graphic_guidelines">
<h2>Graphic Guidelines for Eclipse Identity Logo
<span>For members and providers</span>
</h2>
<p>The Eclipse Identity logo is available in the table below. Please read the <a href=#">Eclipse Logo Graphic Guidelines (.pdf)</a>
for instructions about appropriate uses; then download the desired style, format, size from the table below.</p>
<a href="#" class="icon-download"><span>Download Here</span></a>
</div>
</div><!-- END #midcolumn -->
<div id="rightcolumn">
<div class="sideitem">
<h6>Related Links</h6>
<ul>
<li><a href="#">Logo Usage Guidelines</a></li>
</ul>
</div>
</div><!-- END #rightcolumn -->
</div>
<?php
$html = ob_get_clean();
$html = mb_convert_encoding($html, "HTML-ENTITIES", "auto");
$App->AddExtraHtmlHeader('<link href="http://fonts.googleapis.com/css?family=Roboto:400,100,700" rel="stylesheet" type="text/css">');
$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="css/style.css"/>');
// Generate the web page
$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
?>