using index.php to include libs
diff --git a/modeling-wip/_index.html b/modeling-wip/_index.html
index df7c1b1..9311386 100644
--- a/modeling-wip/_index.html
+++ b/modeling-wip/_index.html
@@ -1,32 +1,12 @@
 
-<!DOCTYPE html>
-<html lang="en">
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
-    <meta name="description" content="">
-    
-    <!-- IE6-8 support of HTML elements -->
-    <!--[if lt IE 9]>
-      <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
-    <![endif]-->
-    
-    <link href="assets/css/bootstrap.css" rel="stylesheet">
-    
-    <title>Eclipse Modeling</title>
-  </head>
-  <body>
-     <script src="assets/js/jquery.js"></script>
-     <script src="assets/js/bootstrap-collapse.js"></script>
-
+   <div class="container">
     <div class="row">
-    <div class="span4">
-    <img  src="http://www.eclipse.org/modeling/images/modeling_pos_logo_fc_med.jpg"/> 
+    <img  src="http://www.eclipse.org/modeling/images/modeling_pos_logo_fc_med.jpg"/>
     <p >
     The Eclipse Modeling Project focuses on the evolution and promotion of model-based development technologies within the Eclipse community by providing a unified set of modeling frameworks, tooling, and standards implementations.
     </p>
     </div>
+    <div class="container row">
     <div class="span10">     
 	<section>
 	   <div class="page-header">
@@ -79,12 +59,22 @@
 	      </ul>
 	   </div>
 	   <div id="detail1-2" class="collapse out">
-	      <h3>CDO</h3>
-	      <p>a technology for distributed shared EMF models and a fast server-based O/R mapping solution. With CDO you can easily enhance your existing models in such a way that saving a resource transparently commits the applied changes to a relational database.</p>
-	      <h3>Teneo</h3>
-	      <p>A database persistency solution for EMF using Hibernate or EclipseLink. It supports automatic creation of EMF to Relational Mappings and the related database schemas.</p>
-	      <h3>Texo</h3>
-	      <p />
+	      <li class="span3">
+	            <h3>CDO</h3>
+	            <p>a technology for distributed shared EMF models and a fast server-based O/R mapping solution. With CDO you can easily enhance your existing models in such a way that saving a resource transparently commits the applied changes to a relational database.</p>
+	         </li>
+	         <li class="span3">
+	            <h3>EMFStore</h3>
+	            <p>EMFStore is a model repository for EMF-based models/data. It allows storage, versioning, collaboration, offline work and interactive merging. All functions are available via API and via GUI included in the release.</p>
+	         </li>	           
+	         <li class="span3">
+	            <h3>Teneo</h3>
+	            <p>A database persistency solution for EMF using Hibernate or EclipseLink. It supports automatic creation of EMF to Relational Mappings and the related database schemas.</p>
+	         </li>
+	         <li class="span3">
+	           <h3>Texo</h3>
+	           <p></p>
+	         </li>	    
 	   </div>
 	   <div id="detail1-3" class="collapse out">
 	      <div>
@@ -183,7 +173,5 @@
           </ul>
         </div>
     </div>
+    </div>
     
-    
-  </body>
-</html>
diff --git a/modeling-wip/index.php b/modeling-wip/index.php
index 1b5cf7e..9cc93e0 100755
--- a/modeling-wip/index.php
+++ b/modeling-wip/index.php
@@ -5,6 +5,10 @@
 $App 	= new App();	$Nav	= new Nav();	$Menu 	= new Menu();		
 include($App->getProjectCommon());    # All on the same line to unclutter the user's desktop'
 	
+    $App->AddExtraHtmlHeader('<!--[if lt IE 9]><script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script><![endif]-->' . "\n\t");
+    $App->AddExtraHtmlHeader('<link href="assets/css/bootstrap.css" rel="stylesheet">' . "\n\t");
+    $App->AddExtraHtmlHeader('<script src="assets/js/jquery.js"></script>' . "\n\t");
+    $App->AddExtraHtmlHeader('<script src="assets/js/bootstrap-collapse.js"></script>' . "\n\t");
 	
 	# Paste your HTML content between the EOHTML markers!
 	$html = file_get_contents('_index.html');