From e9942bc52ac718f1ca9b548493c7530db8992330 Mon Sep 17 00:00:00 2001 From: Webmaster Date: Thu, 5 Jul 2018 15:31:40 -0400 Subject: Initial commit by Webmaster --- _projectCommon.php | 23 +++++++++++++++++ content/en_index.php | 30 +++++++++++++++++++++ description.html | 1 + index.php | 1 + index_for_custom_site.php | 66 +++++++++++++++++++++++++++++++++++++++++++++++ 5 files changed, 121 insertions(+) create mode 100644 _projectCommon.php create mode 100644 content/en_index.php create mode 100644 description.html create mode 100644 index.php create mode 100644 index_for_custom_site.php diff --git a/_projectCommon.php b/_projectCommon.php new file mode 100644 index 0000000..0fe02c9 --- /dev/null +++ b/_projectCommon.php @@ -0,0 +1,23 @@ +addNavSeparator("Solstice", "/eclipse.org-common/themes/solstice/docs/"); + $Nav->addCustomNav("Documentation", "/eclipse.org-common/themes/solstice/docs/", "_self", NULL); + $Nav->addCustomNav("Source code", "http://git.eclipse.org/c/www.eclipse.org/eclipse.org-common.git/tree/themes/solstice/", "_self", NULL); + $Nav->addCustomNav("Using Phoenix", "http://wiki.eclipse.org/Using_Phoenix", "_self", NULL); diff --git a/content/en_index.php b/content/en_index.php new file mode 100644 index 0000000..f4e6422 --- /dev/null +++ b/content/en_index.php @@ -0,0 +1,30 @@ + + + +
+

+

Download Starterkit

+
+ + + +
+
+

Related Links

+ +
+
+ diff --git a/description.html b/description.html new file mode 100644 index 0000000..10edabc --- /dev/null +++ b/description.html @@ -0,0 +1 @@ +This project was just provisioned, so there isn't much to see here. You can find links to the propsal on this page. Stay tuned for great things. \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..735237b --- /dev/null +++ b/index.php @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/index_for_custom_site.php b/index_for_custom_site.php new file mode 100644 index 0000000..a3739bb --- /dev/null +++ b/index_for_custom_site.php @@ -0,0 +1,66 @@ +. (String) + $variables['body_classes'] = ''; + + # Insert custom HTML in the breadcrumb region. (String) + $variables['breadcrumbs_html'] = ""; + + # Hide the breadcrumbs. (Bool) + $variables['hide_breadcrumbs'] = FALSE; + + # Insert HTML before the left nav. (String) + $variables['leftnav_html'] = ''; + + # Update the main container class (String) + $variables['main_container_classes'] = 'container'; + + # Insert HTML after opening the main content container, before the left sidebar. (String) + $variables['main_container_html'] = ''; + + # Set Solstice theme variables. (Array) + $App->setThemeVariables($variables); + + # Place your html content in a file called content/en_pagename.php + ob_start(); + include("content/en_" . $App->getScriptName()); + $html = ob_get_clean(); + + # Insert extra html before closing tag. + //$App->AddExtraHtmlHeader(''); + + # Insert script/html before closing tag. + //$App->AddExtraJSFooter(''); + + # Generate the web page + $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html); + -- cgit v1.2.3