Merge "Bug 514544 - Add splashscreen to slideshow"
diff --git a/content/en_index.php b/content/en_index.php
index 836370a..d7edc33 100755
--- a/content/en_index.php
+++ b/content/en_index.php
@@ -78,11 +78,13 @@
 </div>
 
 <div class="oxygen-slideshow">
-  <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
+  <div id="oxygen-carousel" class="carousel slide" data-ride="carousel">
     <!-- Indicators -->
     <ol class="carousel-indicators">
-      <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
-      <li data-target="#carousel-example-generic" data-slide-to="1"></li>
+      <?php $number_of_items = count($oxygen_content_items['slideshow']) - 1;?>
+      <?php for($i = 0; $i <= $number_of_items; $i++): ?>
+        <li data-target="#oxygen-carousel" data-slide-to="<?php print $i; ?>" <?php print $i === 0 ? 'class="active"' : ''; ?>></li>
+      <?php endfor; ?>
     </ol>
 
     <!-- Wrapper for slides -->
@@ -105,11 +107,11 @@
     </div>
 
     <!-- Controls -->
-    <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
+    <a class="left carousel-control" href="#oxygen-carousel" role="button" data-slide="prev">
       <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
       <span class="sr-only">Previous</span>
     </a>
-    <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
+    <a class="right carousel-control" href="#oxygen-carousel" role="button" data-slide="next">
       <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
       <span class="sr-only">Next</span>
     </a>
diff --git a/oxygen-content.json b/oxygen-content.json
index 2c4a224..7f5c45e 100644
--- a/oxygen-content.json
+++ b/oxygen-content.json
@@ -86,6 +86,12 @@
       "text": "The return value of the last method call is always displayed in the variable view when you debug some Java code. No more need to create temporary variable to find and eradicate sneaky bugs!",
       "image_url": "/oxygen/public/images/oxygen_jdt_debug.png",
       "image_alt": "Oxygen IDE screenshot"
+    },
+    {
+      "title": "Eclipse IDE, Oxygen Edition",
+      "text": "The 15th annual simultaneous release ships on June 28, 2017.",
+      "image_url": "/oxygen/public/images/oxygen_splash_02.jpg",
+      "image_alt": "Oxygen IDE splashscreen"
     }
   ],
   
diff --git a/public/images/oxygen_splash_02.jpg b/public/images/oxygen_splash_02.jpg
new file mode 100644
index 0000000..19990f0
--- /dev/null
+++ b/public/images/oxygen_splash_02.jpg
Binary files differ