Adding a SonarQube snapshot.
diff --git a/codequality.php b/codequality.php
new file mode 100644
index 0000000..3d1fba7
--- /dev/null
+++ b/codequality.php
@@ -0,0 +1,71 @@
+<?php
+/*******************************************************************************
+ * Copyright (c) 2014-2015 Eclipse Foundation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Christopher Guindon (Eclipse Foundation) - Initial implementation
+ *    Taylor Patterson (Eclipse ICE Committer) - Initial ICE content
+ *******************************************************************************/
+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 ();
+
+// Shared variables/configs for all pages of your website.
+require_once ('_projectCommon.php');
+
+// Begin: page-specific settings. Change these.
+$pageTitle = "The Eclipse Integrated Computational Environment";
+$pageKeywords = "science, modeling, simulation";
+$pageAuthor = "Christopher Guindon & Taylor Patterson";
+
+// Initialize custom solstice $variables.
+$variables = array ();
+
+// Add classes to <body>. (String)
+$variables ['body_classes'] = '';
+
+// Insert custom HTML in the breadcrumb region. (String)
+$variables ['breadcrumbs_html'] = "";
+
+// Hide the breadcrumbs. (Bool)
+$variables ['hide_breadcrumbs'] = FALSE;
+
+// Insert HTML before the left nav. (String)
+$variables ['leftnav_html'] = '';
+
+// Update the main container class (String)
+$variables ['main_container_classes'] = 'container';
+
+// Insert HTML after opening the main content container, before the left sidebar. (String)
+$variables ['main_container_html'] = '';
+
+// CFA Link - Big orange button in header
+$variables ['btn_cfa'] = array (
+		'hide' => FALSE, // Optional - Hide the CFA button.
+		'html' => '', // Optional - Replace CFA html and insert custom HTML.
+		'class' => 'btn btn-huge btn-warning', // Optional - Replace class on CFA link.
+		'href' => '//www.eclipse.org/downloads/', // Optional - Replace href on CFA link.
+		'text' => '<i class="fa fa-download"></i> Download' 
+); // Optional - Replace text of CFA link.
+   
+// Set Solstice theme variables. (Array)
+$App->setThemeVariables ( $variables );
+
+// Place your html content in a file called content/en_pagename.php
+ob_start ();
+include ("content/en_" . $App->getScriptName ());
+$html = ob_get_clean ();
+
+// Insert extra html before closing </head> tag.
+// $App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="style.css" media="screen" />');
+
+// Generate the web page
+$App->generatePage ( $theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html );
diff --git a/content/en_codequality.php b/content/en_codequality.php
new file mode 100644
index 0000000..baa2d16
--- /dev/null
+++ b/content/en_codequality.php
@@ -0,0 +1,19 @@
+<?php
+/*******************************************************************************
+ * Copyright (c) 2015 Eclipse Foundation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *    Taylor Patterson (Eclipse ICE Committer) - Initial implementation
+ *******************************************************************************/
+?>
+
+<!-- Main content area -->
+<div id="midcolumn">
+	<img alt="SonarQube Analysis from July 2015"
+		src="/ice/images/sonar0723.png">
+</div>
+<!-- ./end  #midcolumn -->
diff --git a/images/sonar0723.png b/images/sonar0723.png
new file mode 100644
index 0000000..79ded89
--- /dev/null
+++ b/images/sonar0723.png
Binary files differ