From c1fef70df180cb4b778467ebb2fe757edf809a87 Mon Sep 17 00:00:00 2001 From: Akshay S Dinesh <akshay@learnlearn.in> Date: Mon, 8 Nov 2021 19:47:02 +0530 Subject: [PATCH] feat: add Mike's bio --- website/content/english/schedule.md | 4 ++-- website/data/schedule.json | 11 ++++++----- website/layouts/shortcodes/talks.html | 10 ++++++---- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/website/content/english/schedule.md b/website/content/english/schedule.md index 6b39e21..3fa0024 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 4b6a7e9..e303815 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 eec7893..8a7141f 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 -- GitLab