From 898fbfa4a31e02a93c9f499b92a02f887e67ecb8 Mon Sep 17 00:00:00 2001
From: Orestis <orestis.malaspinas@hesge.ch>
Date: Tue, 17 Nov 2020 01:00:57 +0100
Subject: [PATCH] updated team

---
 hakyll-bootstrap/Main.hs             | 4 ++--
 hakyll-bootstrap/templates/team.html | 5 ++---
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/hakyll-bootstrap/Main.hs b/hakyll-bootstrap/Main.hs
index cd60e10..9ceefff 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 75d08e0..95a7b67 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>
 
-- 
GitLab