blob: 9257d689a247f51386c594f7c7dd4da272e8f338 [file] [log] [blame]
<?php
/**
* Copyright (c) 2014, 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 is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Christopher Guindon (Eclipse Foundation) - initial API and implementation
* Eric Poirier (Eclipse Foundation)
*
* SPDX-License-Identifier: EPL-2.0
*/
?>
<!-- Featured story and ad -->
<div class="featured-story">
<div class="container">
<div class="row">
<div class="col-sm-15 col-md-16 featured-story-block">
<p class="featured-story-description">Recommended</p>
<h2>Meet us at JAX 2018</h2>
<p style="font-size:17px;">Join us April 23 – 27, 2018 in Mainz to learn about Jakarta EE, the future of cloud native Java. JAX is a conference for cutting edge Java- and Web-Development, Software-Architecture and innovative Infrastructures.</p>
<p><a href="https://jax.de/en/" class="btn btn-warning">Learn more</a></p>
</div>
<div class="col-sm-9 col-md-8 featured-ad featured-story-block">
<div class="featured-ad-content">
<?php print $Theme->getRandomPromo(TRUE);?>
<p class="featured-story-description">Sponsored Ad</p>
</div>
</div>
</div>
</div>
</div>
<!-- Announcements and Community news -->
<div class="news-list news-list-match-height news-list-top-shape">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-2 col-md-12 news-list-col padding-bottom-50">
<div class="news-list-icon text-center"><i data-feather="activity" stroke-width="1"></i></div>
<h2 class="text-center">Announcements</h2>
<?php
$Announcements = new FeedParser();
$Announcements->addPath($_SERVER['DOCUMENT_ROOT'] . "/community/news/2005newsarchive.rss");
$Announcements->setViewMoreLink('/community/news/eclipsenews.php');
$Announcements->setRssLink('http://feeds.feedburner.com/eclipse/fnews');
$Announcements->setLimit(120);
print $Announcements->output();
?>
<ul class="list-inline news-list-links">
<li class="news-list-links-view-all"><a href="/community/news/eclipsenews.php">View all</a></li>
<li class="news-list-links-rss"><a href="http://feeds.feedburner.com/eclipse/fnews" title="Subscribe to our RSS-feed">Subscribe to our RSS-feed <i class="fa fa-rss"></i></a></li>
</ul>
</div>
<div class="col-lg-10 col-md-12 news-list-col padding-bottom-50">
<div class="news-list-icon text-center"><i data-feather="tv" stroke-width="1"></i></div>
<h2 class="text-center">Community News</h2>
<?php
$Community = new FeedParser();
$Community->addPath($_SERVER['DOCUMENT_ROOT'] . "/community/news/2005inthenewsarchive.rss");
$Community->setViewMoreLink('/community/news/eclipseinthenews.php');
$Community->setRssLink('http://feeds.feedburner.com/eclipse/cnews');
$Community->setLimit(120);
print $Community->output();
?>
<ul class="list-inline news-list-links">
<li class="news-list-links-view-all"><a href="/community/news/eclipseinthenews.php">View all</a></li>
<li class="news-list-links-rss"><a href="http://feeds.feedburner.com/eclipse/cnews" title="Subscribe to our RSS-feed">Subscribe to our RSS-feed <i class="fa fa-rss"></i></a></li>
</ul>
</div>
</div>
</div>
</div>