Temporary solution for board page

This reverts commit c0111d4807144be2bb0c70ac30511b3b348a3bd9.

Signed-off-by: Christopher Guindon <chris.guindon@eclipse-foundation.org>
diff --git a/foundation/boardbios/Robert_Hilbrich.php b/foundation/boardbios/Robert_Hilbrich.php
index b9de648..9ed2b90 100644
--- a/foundation/boardbios/Robert_Hilbrich.php
+++ b/foundation/boardbios/Robert_Hilbrich.php
@@ -1,4 +1,4 @@
-v<div class="row">
+<div class="row">
   <div class="col-sm-4 col-xs-24"><img class="img-responsive" src="boardbios/photos/Robert_Hilbrich.jpg" align="left" style="padding-right: 5px;" width="120"></div>
   <div class="col-sm-20">Dr. Robert Hilbrich works as a manager for simulation and modeling at the German Aerospace Center in Berlin, Germany. He is a computer scientist and started his research career in the field of developing safety-critical real-time systems at the Fraunhofer research institutes FIRST and FOKUS. Since he joined the German Aerospace Center in 2015, he is responsible for the development of the traffic simulation suite Eclipse SUMO. In 2019 Robert also founded a startup, the Consultancy for Engineers GmbH, where he is employed as managing director in addition to his role at the German Aerospace Center.</div>
 </div>
\ No newline at end of file
diff --git a/foundation/content/en_directors.php b/foundation/content/en_directors.php
index 391e37e..af2c6d1 100644
--- a/foundation/content/en_directors.php
+++ b/foundation/content/en_directors.php
@@ -1,4 +1,27 @@
-<h1>Eclipse Foundation Board of Directors</h1>
+<h1><?php print $pageTitle; ?></h1>
+
+<ul>
+  <li><a href="#eclipse_foundation_aisbl">Eclipse Foundation AISBL Board of Directors</a></li>
+  <li><a href="#eclipse_foundation_inc">Eclipse Foundation, Inc. Board of Directors</a></li>
+</ul>
+
+<h2 id="eclipse_foundation_aisbl">Eclipse Foundation AISBL Board of Directors</h2>
+<?php $directors = $Directors->getDirectors(); ?>
+
+<?php foreach($directors as $director): ?>
+  <h3>
+    <?php print $director['fname'] . ' ' . $director['lname']; ?>
+    <small><?php print $director['param']; ?></small>
+  </h3>
+
+  <div class="row">
+    <div class="col-sm-20"><?php print $director['content']; ?></div>
+    <div class="col-sm-4"><?php print $director['img']; ?></div>
+  </div>
+  <hr>
+<?php endforeach; ?>
+
+<h2 id="eclipse_foundation_inc">Eclipse Foundation, Inc. Board of Directors</h2>
 <?php $directors = $Directors->getDirectors(); ?>
 
   <?php foreach($directors as $director): ?>
@@ -6,10 +29,11 @@
       <?php print $director['fname'] . ' ' . $director['lname']; ?>
       <small><?php print $director['param']; ?></small>
     </h3>
-    
+
     <div class="row">
       <div class="col-sm-20"><?php print $director['content']; ?></div>
       <div class="col-sm-4"><?php print $director['img']; ?></div>
     </div>
     <hr>
   <?php endforeach; ?>
+