diff --git a/hakyll-bootstrap/Main.hs b/hakyll-bootstrap/Main.hs
index cd60e107e81bd9e6a4c0dcd611bcc1b7d2b158c1..9ceefff14b6715da67aebe1303bf4d15f7a6bd24 100644
--- a/hakyll-bootstrap/Main.hs
+++ b/hakyll-bootstrap/Main.hs
@@ -126,7 +126,7 @@ main = hakyllWith config $ do
     -- Team description
     match "team/*.md" $ do
         route $ setExtension "html"
-        compile $ pandocRevealCompiler
+        compile $ pandocCompiler
             >>= relativizeUrls
 
     -- Phys app post list
@@ -135,7 +135,7 @@ main = hakyllWith config $ do
         compile $ do
             posts <- recentFirst =<< loadAll "team/*.md"
             makeItem ""
-                >>= loadAndApplyTemplate "templates/team.html" (courseRevealCtx posts "Team")
+                >>= loadAndApplyTemplate "templates/team.html" (courseRevealCtx posts "Research group")
                 >>= relativizeUrls
 
     -- Index
diff --git a/hakyll-bootstrap/templates/team.html b/hakyll-bootstrap/templates/team.html
index 75d08e05c1a42565ee59191ed2b0da3fd627c1b9..95a7b673cf875a203c2ddddddd44f3c3e940fe04 100644
--- a/hakyll-bootstrap/templates/team.html
+++ b/hakyll-bootstrap/templates/team.html
@@ -23,8 +23,7 @@
 
     <div class="container">
       <h1>$title$</h1>
-      <h2>Research group and collaborations</h2>
-      <ul>
+      <!-- <ul> -->
         $for(posts)$
             <hr class="featurette-divider">
 
@@ -44,7 +43,7 @@
           <a href="$url$">$title$</a> - $date$
         </li> -->
         $endfor$
-      </ul>
+      <!-- </ul> -->
       $partial("templates/footer.html")$
     </div>