From fdb9b2a21278a400b0a4853dc3e83f2d6de60733 Mon Sep 17 00:00:00 2001 From: SindreKjelsrud Date: Sat, 7 Dec 2024 14:33:35 +0100 Subject: [PATCH] :performing_arts: Add talk from BOSkonf to /appearances Signed-off-by: SindreKjelsrud --- src/data/appearances.json | 11 ++++++++++- src/pages/appearances.astro | 21 +++++++++++++++++++-- 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/src/data/appearances.json b/src/data/appearances.json index a7de81e..9169060 100644 --- a/src/data/appearances.json +++ b/src/data/appearances.json @@ -14,5 +14,14 @@ "origin":"detsombetyrnoe.no", "description":"The article gives brief interviews with some of NAV's summer interns in 2023, where I'm on of them sharing our tasks, tools we used, and positive experiences." } + ], + "speaking": [ + { + "title":"Introduksjon til Open Source", + "url":"https://files.fribyte.no/boskonf/2024/sindre.mp4", + "date":"07.11.2024", + "origin":"boskonf.no", + "description":"I had the pleasure of holding a lightning talk on the Bergen Open Source Conference in 2024. In my lightning talk I gave a quick introduction to open-source, mentioning some of the benefits, showing some well-known project, and how you can get started yourself." + } ] -} \ No newline at end of file +} diff --git a/src/pages/appearances.astro b/src/pages/appearances.astro index 9719bd7..6a82b24 100644 --- a/src/pages/appearances.astro +++ b/src/pages/appearances.astro @@ -21,7 +21,24 @@ import appearances from "../data/appearances.json";

{appearance.description}

)) - } + } + +
+

Speaking

+ { + appearances.speaking.map(appearance => ( +
+

+ 🔗 {appearance.title} +

+
+

📅: {appearance.date}

+

🎤: {appearance.origin}

+
+

{appearance.description}

+
+ )) + }
- \ No newline at end of file +