blob: 30dc125964e61695018a640ea998e9f4aaacd39f [file] [log] [blame]
<?php
/**
* Copyright (c) 2014-2017, 2018 Eclipse Foundation.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Christopher Guindon (Eclipse Foundation) - Initial implementation
* Eric Poirier (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
require_once ($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");
$Nav = new Nav();
// Set the theme for your project's web pages.
// See the Committer Tools "Phoenix" secion in the How Do I? for list of themes
// https://dev.eclipse.org/committers/
$theme = NULL;
// Define your project-wide Nav bars here.
// Format is Link text, link URL (can be http://www.someothersite.com/), target
// (_self, _blank).
$Nav->addNavSeparator("Skalli", "/skalli");
$Nav->addCustomNav("Download", "/skalli/download.php", "_self", 3);
$Nav->addCustomNav("Documentation", "/skalli/documentation.php", "_self", 3);
$Nav->addCustomNav("Support", "/skalli/support.php", "_self", 3);
$Nav->addCustomNav("Getting Involved", "/skalli/getting-involved.php", "_self", 3);
# Define keywords, author and title here, or in each PHP page specifically
$pageKeywords = "eclipse, skalli";
$pageAuthor = "Simon Kaufmann, SAP AG";
$pageTitle = "Skalli";
# top navigation bar
# To override and replace the navigation with your own, uncomment the line below.
# $Menu->setMenuItemList(array());
# $Menu->addMenuItem("Home", "/project", "_self");
# $Menu->addMenuItem("Download", "/project/download.php", "_self");
# $Menu->addMenuItem("Documentation", "/project/documentation.php", "_self");
# $Menu->addMenuItem("Support", "/project/support.php", "_self");
# $Menu->addMenuItem("Developers", "/project/developers", "_self");
# To define additional CSS or other pre-body headers
$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/skalli/styles/style.css"/>');
# To enable occasional Eclipse Foundation Promotion banners on your pages (EclipseCon, etc)
$App->Promotion = TRUE;