Changed index.php to index.html
diff --git a/welcome/5.0/index.html b/welcome/5.0/index.html
new file mode 100644
index 0000000..4c38d39
--- /dev/null
+++ b/welcome/5.0/index.html
@@ -0,0 +1,11 @@
+<html>
+ <head>
+ <title>Welcome to Photran 5.0</title>
+ </head>
+ <body bgcolor="#FFFFFF">
+ <p>Welcome to Photran 5.0!</p>
+ <script language="JavaScript">
+ document.write(window.location.search.substring(1));
+ </script>
+ </body>
+</html>
\ No newline at end of file
diff --git a/welcome/5.0/index.php b/welcome/5.0/index.php
deleted file mode 100644
index 47f59b1..0000000
--- a/welcome/5.0/index.php
+++ /dev/null
@@ -1,21 +0,0 @@
-<?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'
-
- $pageTitle = "Photran 5.0 Release Notes";
- $pageKeywords = "photran, fortran, ide, eclipse";
- $pageAuthor = "Jeffrey Overbey";
-
- # Paste your HTML content between the EOHTML markers!
- $html = <<<EOHTML
-
-<div id="maincontent">
- <div id="midcolumn">
- <h1>$pageTitle</h1>
-
- <p>Welcome to Photran 5.0!</p>
- $_GET['version']
- </div>
-</div>
-EOHTML;
-
- $App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>