Addition : Communication sur la journee

This commit is contained in:
2024-02-20 17:02:46 +01:00
parent bf3d86aebc
commit 6ea9ad598f
3 changed files with 21 additions and 4 deletions

View File

@ -19,12 +19,12 @@ export const fetchMarkdownGuides = async () => {
}; };
}) })
); );
return allGuides; return allGuides;
}; };
export const fetchMarkdownArticles = async () => { export const fetchMarkdownArticles = async () => {
const alLArticleFiles = import.meta.glob('/src/routes/articles/*.md'); const allArticleFiles = import.meta.glob('/src/routes/articles/*.md');
const iterableArticleFiles = Object.entries(alLArticleFiles); const iterableArticleFiles = Object.entries(allArticleFiles);
// Also return the content // Also return the content
const allArticles = await Promise.all( const allArticles = await Promise.all(
iterableArticleFiles.map(async ([path, resolver]) => { iterableArticleFiles.map(async ([path, resolver]) => {
@ -36,5 +36,5 @@ export const fetchMarkdownArticles = async () => {
}; };
}) })
); );
return allArticles; return allArticles;
}; };

View File

@ -0,0 +1,17 @@
---
title: "Journée d'étude sur le live coding"
author: "Raphaël Maurice Forment"
date: "2024-19-02"
---
Le **23 avril 2024** sera organisé à la **Maison des Sciences de l'Homme Paris Nord** une journée d'étude consacrée au _live coding_. Cette journée est organisée par [Agathe Herrou](https://www.youtube.com/@th4music), [Rémi Georges](https://remigeorges.fr/) et moi-même. Toutes les informations sont disponibles ici : [Journée d'étude Live Coding](htttps://journee.livecoding.fr).
<br>
<img src="../images/jlc_poster.png" alt="Biset Blank" style="display:block; margin-left:auto;margin-right:auto;max-width:1000px;width:75%" />
<br>
En espérant vous y croiser nombreux !

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB