Files
Julien Lengrand-Lambert 4dd30d7fb8 Minor typo
2021-05-09 17:15:27 +02:00

39 lines
990 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/**
* @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 shouldnt 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: "📜",
}
}