diff --git a/website/content/english/schedule.md b/website/content/english/schedule.md
index 6b39e21cdcfd210d4720072502b4a37a3028f6f9..3fa00241219f85c93f80e0c2436997becec47ac4 100644
--- a/website/content/english/schedule.md
+++ b/website/content/english/schedule.md
@@ -19,11 +19,11 @@ aliases:
 <br>
 <br>
 
-<center><h1> Sessions </h1></center>
+<center><h1> Public Sessions </h1></center>
 <table style="width: 100%;">
 <tbody>
 <tr>
-<th scope="row">Date</th><th scope="row">Session</th><th>Location</th>
+<th scope="row">Date</th><th scope="row">Session</th>
 </tr>
 {{< talks >}}
 </tbody>
diff --git a/website/data/schedule.json b/website/data/schedule.json
index 4b6a7e988bafcf27e27d2e81924574220057fa29..e30381510fd73eff645036722961a7ba6a1e6601 100644
--- a/website/data/schedule.json
+++ b/website/data/schedule.json
@@ -8,10 +8,11 @@
     ["20 December 2021 to 31 March 2022", "Mentoring phase"]
   ],
   "talks": [
-    [
-      "23 November 2021, 3:30 PM - 4:30 PM (IST)",
-      "<a href=\"https://nitter.1d4.us/michael_from_uk\">Mike Saunders</a> from <a href=\"https://www.libreoffice.org\">LibreOffice",
-      "https://meet.gnome.org/sof-gpf-pqi-qw7"
-    ]
+    {
+      "time": "23 November 2021, 3:30 PM - 4:30 PM (IST)",
+      "title": "<a href=\"https://nitter.1d4.us/michael_from_uk\">Mike Saunders</a> from <a href=\"https://www.libreoffice.org\">LibreOffice</a>",
+      "url": "https://meet.gnome.org/sof-gpf-pqi-qw7",
+      "bio": "Mike Saunders is a Free and Open Source Software user, advocate and developer. Originally an Amiga fan, he moved to GNU/Linux in 1998 with Red Hat 5.2. In the last 20 years, he has worked as a journalist for many Linux magazines, and is currently employed at The Document Foundation, doing marketing and community outreach for the LibreOffice community. In addition, he has written his own operating system, MikeOS."
+    }
   ]
 }
diff --git a/website/layouts/shortcodes/talks.html b/website/layouts/shortcodes/talks.html
index eec78936f9534f1f85687f8ae645c3e2ca6128bd..8a7141f6c9f483879ad94849dd2dad4b8fb4ceca 100644
--- a/website/layouts/shortcodes/talks.html
+++ b/website/layouts/shortcodes/talks.html
@@ -1,8 +1,10 @@
-
 {{ range .Site.Data.schedule.talks }}
 <tr>
-  <td>{{ index . 0 }}</td>
-  <td>{{ safeHTML (index . 1) }}</td>
-  <td><a href="{{ index . 2 }}">{{ index . 2 }}</a></td>
+  <td>{{ .time }}</td>
+  <td>
+    <strong>{{ safeHTML .title }}</strong> <br /><br />
+    {{ safeHTML .bio }}<br /><br />
+    URL: <a href="{{ .url }}">{{ .url }}</a>
+  </td>
 </tr>
 {{ end }}
\ No newline at end of file