|  | <?php | 
|  | /** | 
|  | * Copyright (c) 2019 Eclipse Foundation and others. | 
|  | * | 
|  | * 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 | 
|  | * | 
|  | * SPDX-License-Identifier: EPL-2.0 | 
|  | */ | 
|  |  | 
|  | $links = $SimultaneousRelease->getNewAndNoteworthyLinks(); | 
|  |  | 
|  | ?> | 
|  | <div class="container"> | 
|  | <h1>New & Noteworthy</h1> | 
|  | <p> | 
|  | The 2020-03 release is the Eclipse Foundation's first quarterly simultaneous release in 2020 with | 
|  | <a href="https://projects.eclipse.org/releases/2020-03">seventy-six participating projects</a>, available March 18, 2020. | 
|  | </p> | 
|  | <p> | 
|  | Here are the new and noteworthy items of various projects in the 2020-03 release train: | 
|  | </p> | 
|  |  | 
|  | <ul> | 
|  | <?php foreach($links as $link): ?> | 
|  | <li><?php print $link; ?></li> | 
|  | <?php endforeach; ?> | 
|  | </ul> | 
|  |  | 
|  | <!-- List of links to the new and noteworthy pages of projects --> | 
|  | </div> |