mirror of
https://github.com/les-briques-du-web/les-briques-du-web-website.git
synced 2026-03-10 08:51:22 +00:00
26 lines
1.2 KiB
JavaScript
26 lines
1.2 KiB
JavaScript
/**
|
||
* @file Contains global data for the site colophon
|
||
* @author Reuben L. Lillie <reubenlillie@gmail.com>
|
||
* @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.
|
||
|
||
/**
|
||
* Global colophon data module
|
||
* @module _data/colophon
|
||
* @see {@link https://www.11ty.dev/docs/data-global/ Global data files in 11ty}
|
||
*/
|
||
export default {
|
||
fr: {
|
||
generator: '🏗️ Créé por <a href=\"https://twitter.com/LostInBrittany\">@LostInBrittany</a>',
|
||
languages: 'Code source écrit en 🍦 vanilla JavaScript, 🕸️ HTML semantique, 🎨 CSS progressivement améliorée, et 🧂 un soupçon de Markdown.',
|
||
git: '💝 Basé dans le <a href=\"http://gitlab.com/reubenlillie/eleventy-dot-js-blog/\">eleventy-dot-js-blog</a> starter pour <a href=\"https://11ty.dev/\">🕚 Eleventy</a>, le générateur de sites statiques.',
|
||
host: '🚀 Hébérgé sur <a href="https://pages.github.com/">GitHub Pages</a>'
|
||
}
|
||
}
|