mirror of
https://github.com/les-briques-du-web/les-briques-du-web-website.git
synced 2026-03-10 08:51:22 +00:00
39 lines
990 B
JavaScript
39 lines
990 B
JavaScript
/**
|
||
* @file Contains global data about the chronicles
|
||
* @author Horacio Gonzalez <horacio.gonzalez@gmail.com>
|
||
*/
|
||
|
||
// Edit the values for the properties in this file to fit your site.
|
||
// You can add as many new properties as you want,
|
||
// but you shouldn’t remove any of the ones already included here
|
||
// without also editing the files where those properties are used.
|
||
// Otherwise, the site will probably break.
|
||
|
||
/**
|
||
* Clobal data about the chronicles
|
||
* @module _data/chronicles
|
||
* @see {@link https://www.11ty.dev/docs/data-global/ Global data files in 11ty}
|
||
*/
|
||
export default {
|
||
meteo_du_web: {
|
||
name: "La Météo du Web",
|
||
emoji: "☀️",
|
||
},
|
||
entretien: {
|
||
name: "L'Entretien",
|
||
emoji: "🎙️",
|
||
},
|
||
focus_api: {
|
||
name: "Le Focus API",
|
||
emoji: "⁉️",
|
||
},
|
||
weekly_project: {
|
||
name:"Le Projet de la Semaine",
|
||
emoji: "🛠️",
|
||
},
|
||
anecdocte_historique: {
|
||
name: "L'Anecdote Historique",
|
||
emoji: "📜",
|
||
}
|
||
}
|