Add 3.17 N&N placeholding page
diff --git a/releases/3.17/NewAndNoteworthy/index.html b/releases/3.17/NewAndNoteworthy/index.html
new file mode 100644
index 0000000..21fb591
--- /dev/null
+++ b/releases/3.17/NewAndNoteworthy/index.html
@@ -0,0 +1,8 @@
+<html>

+<head>

+<meta http-equiv="refresh" content="0; url=index.php" />

+</head>

+<body>

+<a href="index.php">This document has moved</a>

+</body>

+</html>

diff --git a/releases/3.17/NewAndNoteworthy/index.php b/releases/3.17/NewAndNoteworthy/index.php
new file mode 100644
index 0000000..8a48a07
--- /dev/null
+++ b/releases/3.17/NewAndNoteworthy/index.php
@@ -0,0 +1,28 @@
+<?php  																														require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); 	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); 	$App 	= new App();	$Nav	= new Nav();	$Menu 	= new Menu();		include($App->getProjectCommon());    # All on the same line to unclutter the user's desktop'
+$pageKeywords	= "";
+$pageAuthor		="Ugur Yildirim @ Eteration A.S.";
+
+$root = $_SERVER['DOCUMENT_ROOT'];
+require_once ($root . '/webtools/common.php');
+
+# Generate the web page
+// Load the XML source
+$xml = DOMDocument::load('index.xml');
+
+//Set the page title
+$xpath = new DOMXPath($xml);
+$titleNode = $xpath->query("/release/attribute::name")->item(0);
+$pageTitle = ($titleNode != null) ? "Web Tools Platform " . $titleNode->nodeValue . " News" : "eclipse.org webtools page";
+
+// Load the XSL source
+$xsl = DOMDocument::load($root . '/webtools/development/news/phoenix_noteworthy.xsl');
+
+// Configure the transformer
+$proc = new XSLTProcessor;
+$proc->importStyleSheet($xsl); // attach the xsl rules
+
+$html = $proc->transformToXML($xml);
+$html .= $wtpTopButtons;
+
+$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
+?>
diff --git a/releases/3.17/NewAndNoteworthy/index.xml b/releases/3.17/NewAndNoteworthy/index.xml
new file mode 100644
index 0000000..fb7ff04
--- /dev/null
+++ b/releases/3.17/NewAndNoteworthy/index.xml
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-stylesheet type="text/xsl" href="../../../development/news/phoenix_noteworthy.xsl"?>
+<release
+	name="3.17"
+	root="../../.."
+>
+	<header>
+		 WTP 3.17 is primarily a bug fix release, with new features expected in the next release.
+		 It is available as part of the
+		 <a href="https://wiki.eclipse.org/Category:SimRel-2020-03">2020-03</a>
+		 <a href="https://wiki.eclipse.org/Simultaneous_Release">Simultaneous Release</a>
+		 (March 18th, 2020).
+		 <a href="http://download.eclipse.org/webtools/downloads/">Download</a>
+				it now!
+	</header>
+	<footer>
+		Summaries for earlier releases:
+		<ul>
+			<li>
+				<a
+					href="../../../development/news/"
+				>Full summaries for earlier milestones and releases.</a>
+			</li>
+		</ul>
+	</footer>
+</release>