blob: 8d6067eb76d3860c90c63801baa6945c9f271ae6 [file] [log] [blame]
<?php
/**
* Copyright (c) 2018 Eclipse Foundation and others.
*
* This program and the accompanying materials are made available
* under the terms of the Eclipse Public License 2.0 which accompanies
* this distribution, and is available at http://eclipse.org/legal/epl-2.0
*/
require_once (dirname(__FILE__) . "/../../eclipse.org-common/system/app.class.php");
require_once (dirname(__FILE__) . "/../../eclipse.org-common/system/nav.class.php");
$App = new App();
$Nav = new Nav();
$Theme = $App->getThemeClass();
include($App->getProjectCommon());
$pageTitle = "Eclipse Foundation Open VSX Registry Frequently Asked Questions (FAQ)";
$Theme->setPageTitle($pageTitle);
$Theme->setPageKeywords("Eclipse Foundation, Open VSX Registry, FAQ");
$Theme->setPageAuthor("Eclipse Foundation");
ob_start();
include ("content/en_open-vsx-registry-faq.php");
$html = ob_get_clean();
$Theme->setNav($Nav);
$Theme->setHtml($html);
$Theme->generatePage();