From 15f81a03b8fb250ee15290e8b0027a551f7784c7 Mon Sep 17 00:00:00 2001
From: Matthieu Schaller <schaller@strw.leidenuniv.nl>
Date: Sun, 9 Apr 2023 19:16:25 +0200
Subject: [PATCH] Remove the 'Talks' and 'Publications' pages. Add a 'Gallery'
 page

---
 compiler.py      | 6 ++----
 data/global.yaml | 3 +--
 2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/compiler.py b/compiler.py
index c05b8c9..b33cac8 100644
--- a/compiler.py
+++ b/compiler.py
@@ -146,8 +146,7 @@ if __name__ == "__main__":
 
     PAGES = [
         "index.html",
-        "pubs.html",
-        "talks.html",
+        "gallery.html",
         "about.html",
         "contact.html"
     ]
@@ -156,8 +155,7 @@ if __name__ == "__main__":
         "stylesheets",
         "images",
         "javascript",
-        "publications",
-        "talks"
+        "gallery"
     ]
 
     print("Compiling markdown to HTML and saving in the about.yaml file...")
diff --git a/data/global.yaml b/data/global.yaml
index eba6169..9f19a71 100644
--- a/data/global.yaml
+++ b/data/global.yaml
@@ -6,7 +6,6 @@ link: [
 navbar: [
   # Give in [Display_Name, Template_Name format].
   [About, "about.html"],
-  [Papers, "pubs.html"],
-  [Talks, "talks.html"],
+  [Gallery, "gallery.html"],
   [Contact, "contact.html"]
 ]
-- 
GitLab