|
Lines 6-50
$pageTitle = "";
Link Here
|
| 6 |
$pageKeywords = ""; |
6 |
$pageKeywords = ""; |
| 7 |
$pageAuthor = "Eike Stepper"; |
7 |
$pageAuthor = "Eike Stepper"; |
| 8 |
|
8 |
|
| 9 |
?> |
9 |
// Initialize $variables. |
|
|
10 |
$variables = array(); |
| 11 |
$links = array(); |
| 10 |
|
12 |
|
| 11 |
<div class="linkBlock"> |
13 |
$links[] = array( |
| 12 |
<div class="link"> |
14 |
'icon' => 'fa-download', // Required |
| 13 |
<a href="downloads"><img src="http://dev.eclipse.org/huge_icons/actions/go-down.png" alt="Downloads"/></a> |
15 |
'url' => '/cdo/downloads/', // Required |
| 14 |
<a class="heading" href="downloads">Downloads</a> |
16 |
'title' => 'Download', // Required |
| 15 |
<p class="subText">Looking for the latest build?<br/>Milestones, maintenance builds, and more...</p> |
17 |
//'target' => '_blank', // Optional |
| 16 |
</div> |
18 |
'text' => 'Looking for the latest build?<br/>Milestones, maintenance builds, and more...' // Optional |
| 17 |
<div class="link"> |
19 |
); |
| 18 |
<a href="documentation"><img src="http://dev.eclipse.org/huge_icons/mimetypes/x-office-book.png" alt="Documentation"/></a> |
|
|
| 19 |
<a class="heading" href="documentation">Documentation</a> |
| 20 |
<p class="subText">Browse through the product documentation, tutorials, presentations and the JavaDocs...</p> |
| 21 |
</div> |
| 22 |
<div class="link"> |
| 23 |
<a href="support"><img src="http://dev.eclipse.org/huge_icons/apps/help-browser.png" alt="Support"/></a> |
| 24 |
<a class="heading" href="support">Support</a> |
| 25 |
<p class="subText">You have problems or questions not answered in the documentation? Look here for help...</p> |
| 26 |
</div> |
| 27 |
</div> |
| 28 |
|
20 |
|
| 29 |
<div class="linkBlock"> |
21 |
$links[] = array( |
| 30 |
<div class="link"> |
22 |
'icon' => 'fa-book', // Required |
| 31 |
<a href="community"><img src="http://dev.eclipse.org/huge_icons/categories/applications-internet.png" alt="Community"/></a> |
23 |
'url' => '/cdo/documentation', // Required |
| 32 |
<a class="heading" href="community">Community</a> |
24 |
'title' => 'Documentation', // Required |
| 33 |
<p class="subText">Visit the community pages for information about various product and development topics...</p> |
25 |
//'target' => '_blank', // Optional |
| 34 |
</div> |
26 |
'text' => 'Browse through the product documentation, tutorials, presentations and the JavaDocs...' // Optional |
| 35 |
<div class="link"> |
27 |
); |
| 36 |
<a href="development"><img src="http://dev.eclipse.org/huge_icons/actions/edit-clear.png" alt="Development"/></a> |
28 |
|
| 37 |
<a class="heading" href="development">Development</a> |
29 |
$links[] = array( |
| 38 |
<p class="subText">Get the sources and find out more about the CDO project and its development process...</p> |
30 |
'icon' => 'fa-support', // Required |
| 39 |
</div> |
31 |
'url' => '/cdo/support/', // Required |
| 40 |
<div class="link"> |
32 |
'title' => 'Support', // Required |
| 41 |
<a href="team"><img src="http://dev.eclipse.org/huge_icons/apps/system-users.png" alt="Team"/></a> |
33 |
//'target' => '_blank', // Optional |
| 42 |
<a class="heading" href="team">Team</a> |
34 |
'text' => 'You have problems or questions not answered in the documentation? Look here for help...' // Optional |
| 43 |
<p class="subText">About us and our activity...</p> |
35 |
); |
| 44 |
</div> |
|
|
| 45 |
</div> |
| 46 |
|
36 |
|
| 47 |
|
37 |
|
|
|
38 |
$links[] = array( |
| 39 |
'icon' => 'fa-globe', // Required |
| 40 |
'url' => '/cdo/community/', // Required |
| 41 |
'title' => 'Community', // Required |
| 42 |
//'target' => '_blank', // Optional |
| 43 |
'text' => 'Visit the community pages for information about various product and development topics...' // Optional |
| 44 |
); |
| 45 |
|
| 46 |
$links[] = array( |
| 47 |
'icon' => 'fa-code', // Required |
| 48 |
'url' => '/cdo/development/', // Required |
| 49 |
'title' => 'Development', // Required |
| 50 |
//'target' => '_blank', // Optional |
| 51 |
'text' => 'Get the sources and find out more about the CDO project and its development process...' // Optional |
| 52 |
); |
| 53 |
|
| 54 |
|
| 55 |
$links[] = array( |
| 56 |
'icon' => 'fa fa-users', // Required |
| 57 |
'url' => '/cdo/team/', // Required |
| 58 |
'title' => 'Team', // Required |
| 59 |
//'target' => '_blank', // Optional |
| 60 |
'text' => 'About us and our activity...' // Optional |
| 61 |
); |
| 62 |
|
| 63 |
|
| 64 |
$variables['header_nav'] = array( |
| 65 |
'links' => $links, // Required |
| 66 |
'logo' => array( // Required |
| 67 |
'src' => '/cdo/images/Logo-CDO.png', // Required |
| 68 |
'alt' => 'The Eclipse Foundation', // Optional |
| 69 |
'url' => 'http://www.eclipse.org', // Optional |
| 70 |
//'target' => '_blank' // Optional |
| 71 |
), |
| 72 |
); |
| 73 |
|
| 74 |
// Set Solstice theme variables (Array) |
| 75 |
$App->setThemeVariables($variables); |
| 76 |
|
| 77 |
?> |
| 78 |
|
| 48 |
<div id="midcolumn"> |
79 |
<div id="midcolumn"> |
| 49 |
<div class="sideitem"> |
80 |
<div class="sideitem"> |
| 50 |
<h6><a href="<?=$PR?>/news-whatsnew.php"><img alt="RSS Feed" src="http://www.eclipse.org/images/rss2.gif"/></a> |
81 |
<h6><a href="<?=$PR?>/news-whatsnew.php"><img alt="RSS Feed" src="http://www.eclipse.org/images/rss2.gif"/></a> |
|
Lines 73-79
$pageAuthor = "Eike Stepper";
Link Here
|
| 73 |
<div id="rightcolumn"> |
104 |
<div id="rightcolumn"> |
| 74 |
<div class="sideitem"> |
105 |
<div class="sideitem"> |
| 75 |
<h6>Related Links</h6> |
106 |
<h6>Related Links</h6> |
| 76 |
<ul class="relatedLinks"> |
107 |
<ul class="relatedLinks fa-ul" style="margin-left:20px;"> |
| 77 |
<li> |
108 |
<li> |
| 78 |
<a href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.cdo"><img src="http://www.eclipse.org/cdo/images/Logo-CDO-32x32-bottom.png"/></a> |
109 |
<a href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.cdo"><img src="http://www.eclipse.org/cdo/images/Logo-CDO-32x32-bottom.png"/></a> |
| 79 |
<a href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.cdo">About This Project</a> |
110 |
<a href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf.cdo">About This Project</a> |